Home
last modified time | relevance | path

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

/external/webrtc/webrtc/base/
Dsocketadapters.cc713 AsyncSocksProxyServerSocket::AsyncSocksProxyServerSocket(AsyncSocket* socket) in AsyncSocksProxyServerSocket() function in rtc::AsyncSocksProxyServerSocket
718 void AsyncSocksProxyServerSocket::ProcessInput(char* data, size_t* len) { in ProcessInput()
736 void AsyncSocksProxyServerSocket::DirectSend(const ByteBuffer& buf) { in DirectSend()
740 void AsyncSocksProxyServerSocket::HandleHello(ByteBuffer* request) { in HandleHello()
771 void AsyncSocksProxyServerSocket::SendHelloReply(uint8_t method) { in SendHelloReply()
778 void AsyncSocksProxyServerSocket::HandleAuth(ByteBuffer* request) { in HandleAuth()
795 void AsyncSocksProxyServerSocket::SendAuthReply(uint8_t result) { in SendAuthReply()
802 void AsyncSocksProxyServerSocket::HandleConnect(ByteBuffer* request) { in HandleConnect()
826 void AsyncSocksProxyServerSocket::SendConnectResult(int result, in SendConnectResult()
843 void AsyncSocksProxyServerSocket::Error(int error) { in Error()
Dsocketadapters.h190 class AsyncSocksProxyServerSocket : public AsyncProxyServerSocket {
192 explicit AsyncSocksProxyServerSocket(AsyncSocket* socket);
212 RTC_DISALLOW_COPY_AND_ASSIGN(AsyncSocksProxyServerSocket);
Dproxyserver.cc151 return new AsyncSocksProxyServerSocket(socket); in WrapSocket()