/* * 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.
*/
// 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 { public:
BufferedReadAdapter(Socket* socket, size_t buffer_size);
~BufferedReadAdapter() override;
// Implements a socket adapter that performs the client side of a // fake SSL handshake. Used for "ssltcp" P2P functionality. class AsyncSSLSocket : public BufferedReadAdapter { public: static ArrayView<const uint8_t> SslClientHello(); static ArrayView<const uint8_t> SslServerHello();
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.