summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/rtc_base/proxy_server.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebrtc/rtc_base/proxy_server.h')
-rw-r--r--third_party/libwebrtc/rtc_base/proxy_server.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/third_party/libwebrtc/rtc_base/proxy_server.h b/third_party/libwebrtc/rtc_base/proxy_server.h
index 0b9b655a5e..033dd82118 100644
--- a/third_party/libwebrtc/rtc_base/proxy_server.h
+++ b/third_party/libwebrtc/rtc_base/proxy_server.h
@@ -89,22 +89,6 @@ class ProxyServer : public sigslot::has_slots<> {
std::vector<std::unique_ptr<ProxyBinding>> bindings_;
};
-// SocksProxyServer is a simple extension of ProxyServer to implement SOCKS.
-class SocksProxyServer : public ProxyServer {
- public:
- SocksProxyServer(SocketFactory* int_factory,
- const SocketAddress& int_addr,
- SocketFactory* ext_factory,
- const SocketAddress& ext_ip)
- : ProxyServer(int_factory, int_addr, ext_factory, ext_ip) {}
-
- SocksProxyServer(const SocksProxyServer&) = delete;
- SocksProxyServer& operator=(const SocksProxyServer&) = delete;
-
- protected:
- AsyncProxyServerSocket* WrapSocket(Socket* socket) override;
-};
-
} // namespace rtc
#endif // RTC_BASE_PROXY_SERVER_H_