// Copyright 2016 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_REJECTING_AUTHENTICATOR_H_ #define REMOTING_PROTOCOL_REJECTING_AUTHENTICATOR_H_ #include <string> #include "remoting/protocol/authenticator.h" namespace remoting::protocol { // Authenticator that accepts one message and rejects connection after that. class RejectingAuthenticator : public Authenticator { … }; } // namespace remoting::protocol #endif // REMOTING_PROTOCOL_REJECTING_AUTHENTICATOR_H_