| 126 | } |
| 127 | |
| 128 | LocalSocket::LocalSocket(int type, int protocol) : Socket(type, protocol){ |
| 129 | domain = UnixDomain; |
| 130 | flags = FS_NODE_SOCKET; |
| 131 | |
| 132 | assert(type == StreamSocket || type == DatagramSocket); |
| 133 | } |
| 134 | |
| 135 | int LocalSocket::ConnectTo(Socket* client){ |
| 136 | assert(passive); |
nothing calls this directly
no outgoing calls
no test coverage detected