diff options
Diffstat (limited to 'win32/include/sys/socket.h')
-rw-r--r-- | win32/include/sys/socket.h | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/win32/include/sys/socket.h b/win32/include/sys/socket.h index 701022a7fc..9e5259b254 100644 --- a/win32/include/sys/socket.h +++ b/win32/include/sys/socket.h @@ -85,12 +85,15 @@ struct protoent *win32_getprotoent(void); struct servent *win32_getservent(void); void win32_sethostent(int stayopen); void win32_setnetent(int stayopen); +struct netent * win32_getnetent(void); +struct netent * win32_getnetbyname(char *name); +struct netent * win32_getnetbyaddr(long net, int type); void win32_setprotoent(int stayopen); void win32_setservent(int stayopen); -void win32_endhostent(); -void win32_endnetent(); -void win32_endprotoent(); -void win32_endservent(); +void win32_endhostent(void); +void win32_endnetent(void); +void win32_endprotoent(void); +void win32_endservent(void); // // direct to our version |