summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/rtc_base/proxy_server.h
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-12 05:43:14 +0000
commit8dd16259287f58f9273002717ec4d27e97127719 (patch)
tree3863e62a53829a84037444beab3abd4ed9dfc7d0 /third_party/libwebrtc/rtc_base/proxy_server.h
parentReleasing progress-linux version 126.0.1-1~progress7.99u1. (diff)
downloadfirefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz
firefox-8dd16259287f58f9273002717ec4d27e97127719.zip
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
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_