| 1717 | |
| 1718 | |
| 1719 | Option<int_fd> SocketManager::get_persistent_socket(const UPID& to) |
| 1720 | { |
| 1721 | synchronized (mutex) { |
| 1722 | if (persists.count(to.address) > 0) { |
| 1723 | return persists.at(to.address); |
| 1724 | } |
| 1725 | } |
| 1726 | |
| 1727 | return None(); |
| 1728 | } |
| 1729 | |
| 1730 | |
| 1731 | PID<HttpProxy> SocketManager::proxy(const Socket& socket) |
no outgoing calls
no test coverage detected