/* * Copyright 2004 The WebRTC Project Authors. All rights reserved. * * Use of this source code is governed by a BSD-style license * that can be found in the LICENSE file in the root of the source * tree. An additional intellectual property rights grant can be found * in the file PATENTS. All contributing project authors may * be found in the AUTHORS file in the root of the source tree. */ #ifndef RTC_BASE_SOCKET_ADAPTERS_H_ #define RTC_BASE_SOCKET_ADAPTERS_H_ #include <string> #include "absl/strings/string_view.h" #include "api/array_view.h" #include "rtc_base/async_socket.h" namespace rtc { struct HttpAuthContext; class ByteBufferReader; class ByteBufferWriter; /////////////////////////////////////////////////////////////////////////////// // Implements a socket adapter that can buffer and process data internally, // as in the case of connecting to a proxy, where you must speak the proxy // protocol before commencing normal socket behavior. class BufferedReadAdapter : public AsyncSocketAdapter { … }; /////////////////////////////////////////////////////////////////////////////// // Implements a socket adapter that performs the client side of a // fake SSL handshake. Used for "ssltcp" P2P functionality. class AsyncSSLSocket : public BufferedReadAdapter { … }; } // namespace rtc #endif // RTC_BASE_SOCKET_ADAPTERS_H_