| 18 | } |
| 19 | |
| 20 | MessageClient::~MessageClient(){ |
| 21 | close(sock.fd); |
| 22 | } |
| 23 | |
| 24 | MessageServer::MessageServer(sockaddr_un& address, socklen_t len){ |
| 25 | sock.fd = socket(AF_UNIX, SOCK_STREAM | SOCK_NONBLOCK, 0); |
nothing calls this directly
no outgoing calls
no test coverage detected