// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include #include #include #include "components/cast_channel/cast_framer.h" #include "testing/libfuzzer/proto/lpm_interface.h" #include "third_party/openscreen/src/cast/common/channel/proto/cast_channel.pb.h" namespace cast_channel { namespace fuzz { DEFINE_PROTO_FUZZER(const cast::channel::CastMessage& input) { std::string native_input; MessageFramer::Serialize(input, &native_input); if (::getenv("LPM_DUMP_NATIVE_INPUT")) std::cout << native_input << std::endl; } } // namespace fuzz } // namespace cast_channel