| 31 | int sndbuf; |
| 32 | int rcvbuf; |
| 33 | socket_args() : addr(), addrlen(0), family(AF_INET), socktype(SOCK_STREAM), |
| 34 | protocol(0), timeout(600), listen_backlog(256), |
| 35 | reuseaddr(true), nonblocking(false), use_epoll(false), |
| 36 | sndbuf(0), rcvbuf(0) { } |
| 37 | void set(const config& conf); |
| 38 | void set_unix_domain(const char *path); |
| 39 | int resolve(const char *node, const char *service); |
nothing calls this directly
no outgoing calls
no test coverage detected