Kernel: Remove dead TCPSocket::from_endpoints method

This commit is contained in:
Brian Gianforcaro 2021-05-13 02:49:37 -07:00 committed by Andreas Kling
commit 879eec6aa8
Notes: sideshowbarker 2024-07-18 18:10:41 +09:00
2 changed files with 0 additions and 7 deletions

View file

@ -143,7 +143,6 @@ public:
static Lockable<HashMap<IPv4SocketTuple, TCPSocket*>>& sockets_by_tuple();
static RefPtr<TCPSocket> from_tuple(const IPv4SocketTuple& tuple);
static RefPtr<TCPSocket> from_endpoints(const IPv4Address& local_address, u16 local_port, const IPv4Address& peer_address, u16 peer_port);
static Lockable<HashMap<IPv4SocketTuple, RefPtr<TCPSocket>>>& closing_sockets();