Home
last modified time | relevance | path

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

/device/google/cuttlefish/common/libs/utils/
Dsocket2socket_proxy.cpp114 ProxyServer::ProxyServer(SharedFD server, std::function<SharedFD()> clients_factory) in ProxyServer() function in cuttlefish::ProxyServer
177 void ProxyServer::Join() { in Join()
183 ProxyServer::~ProxyServer() { in ~ProxyServer()
191 ProxyServer proxy(std::move(server), std::move(conn_factory)); in Proxy()
195 std::unique_ptr<ProxyServer> ProxyAsync(SharedFD server, std::function<SharedFD()> conn_factory) { in ProxyAsync()
196 return std::make_unique<ProxyServer>(std::move(server), std::move(conn_factory)); in ProxyAsync()
Dsocket2socket_proxy.h27 class ProxyServer {
29 ProxyServer(SharedFD server, std::function<SharedFD()> clients_factory);
31 ~ProxyServer();
47 std::unique_ptr<ProxyServer> ProxyAsync(SharedFD server, std::function<SharedFD()> conn_factory);
/device/google/cuttlefish/common/frontend/socket_vsock_proxy/
Dsocket_vsock_proxy.cpp148 static Result<std::unique_ptr<ProxyServer>> StartProxyAsync(Server& server, Client& client) { in StartProxyAsync()
160 std::unique_ptr<ProxyServer> proxy; in ListenEventsAndProxy()