Home
last modified time | relevance | path

Searched refs:AsyncSocksProxyServerSocket (Results 1 – 3 of 3) sorted by relevance

/external/webrtc/rtc_base/
Dserver_socket_adapters.cc58 AsyncSocksProxyServerSocket::AsyncSocksProxyServerSocket(AsyncSocket* socket) in AsyncSocksProxyServerSocket() function in rtc::AsyncSocksProxyServerSocket
63 void AsyncSocksProxyServerSocket::ProcessInput(char* data, size_t* len) { in ProcessInput()
80 void AsyncSocksProxyServerSocket::DirectSend(const ByteBufferWriter& buf) { in DirectSend()
84 void AsyncSocksProxyServerSocket::HandleHello(ByteBufferReader* request) { in HandleHello()
113 void AsyncSocksProxyServerSocket::SendHelloReply(uint8_t method) { in SendHelloReply()
120 void AsyncSocksProxyServerSocket::HandleAuth(ByteBufferReader* request) { in HandleAuth()
134 void AsyncSocksProxyServerSocket::SendAuthReply(uint8_t result) { in SendAuthReply()
141 void AsyncSocksProxyServerSocket::HandleConnect(ByteBufferReader* request) { in HandleConnect()
161 void AsyncSocksProxyServerSocket::SendConnectResult(int result, in SendConnectResult()
178 void AsyncSocksProxyServerSocket::Error(int error) { in Error()
Dserver_socket_adapters.h40 class AsyncSocksProxyServerSocket : public AsyncProxyServerSocket {
42 explicit AsyncSocksProxyServerSocket(AsyncSocket* socket);
67 RTC_DISALLOW_COPY_AND_ASSIGN(AsyncSocksProxyServerSocket);
Dproxy_server.cc152 return new AsyncSocksProxyServerSocket(socket); in WrapSocket()