1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-16 12:49:02 +00:00

Replaced internal opaque types by structs.

This commit is contained in:
henri
2014-05-21 19:59:42 +00:00
parent 687d153378
commit d13dab54c3
22 changed files with 407 additions and 406 deletions

View File

@@ -92,10 +92,10 @@ const char *get_unixsock_path(const struct sockaddr_storage *addr);
/* Get the peer address string. In case of a Unix domain socket, returns the
* path to UNIX socket, otherwise it returns string containing
* "<address>:<port>". */
char *get_peeraddr_string(const msiod *iod);
char *get_peeraddr_string(const struct niod *iod);
/* Get the local bind address string. */
char *get_localaddr_string(const msiod *iod);
char *get_localaddr_string(const struct niod *iod);
#endif /* NETUTILS_H */