// Copyright 2019 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "cast/sender/channel/message_util.h" #include <string> #include <utility> #include "cast/sender/channel/cast_auth_util.h" #include "util/json/json_serialization.h" namespace openscreen::cast { AuthChallenge; CastMessage; DeviceAuthMessage; CastMessage CreateAuthChallengeMessage(const AuthContext& auth_context) { … } ErrorOr<CastMessage> CreateAppAvailabilityRequest(const std::string& sender_id, int request_id, const std::string& app_id) { … } } // namespace openscreen::cast