Lines Matching defs:socket
29 #include <sys/socket.h>
43 TCPSocket::TCPSocket(NativeSocket socket, const TCPSocket &listen_socket)
45 m_socket = socket;
48 TCPSocket::TCPSocket(NativeSocket socket, bool should_close)
50 m_socket = socket;
59 // Return the port number that is being used by the socket.
234 for (auto socket : m_listen_sockets)
235 CloseSocket(socket.first);
241 std::function<void(std::unique_ptr<Socket> socket)> sock_cb) {
246 for (auto socket : m_listen_sockets) {
247 auto fd = socket.first;