| 146 | } |
| 147 | |
| 148 | int |
| 149 | ng_socket(int domain, int type, int protocol) |
| 150 | { |
| 151 | struct socket_args sa; |
| 152 | sa.domain = domain; |
| 153 | sa.type = type; |
| 154 | sa.protocol = protocol; |
| 155 | |
| 156 | return ngctl(NGCTL_SOCKET, (void *)&sa, sizeof(sa)); |
| 157 | } |
| 158 | |
| 159 | int |
| 160 | ng_bind(int sockfd, const struct sockaddr *addr, |