// Copyright 2012 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef REMOTING_PROTOCOL_CHANNEL_AUTHENTICATOR_H_ #define REMOTING_PROTOCOL_CHANNEL_AUTHENTICATOR_H_ #include <string> #include "base/functional/callback_forward.h" namespace remoting::protocol { class P2PStreamSocket; // Interface for channel authentications that perform channel-level // authentication. Depending on implementation channel authenticators // may also establish SSL connection. Each instance of this interface // should be used only once for one channel. class ChannelAuthenticator { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_CHANNEL_AUTHENTICATOR_H_