#include <sys/types.h> #include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> int inet_netof(struct in_addr internet_address)
#define _XOPEN_SOURCE 520 #include <arpa/inet.h> in_addr_t inet_netof(struct in_addr internet_address)
The inet_netof() function is used to extract the network portion of an IP address.
There are two versions of the API, as shown above. The base i5/OS API uses BSD 4.3 structures and syntax. The other uses syntax and structures compatible with the UNIX 98 programming interface specifications. You can select the UNIX 98 compatible interface with the _XOPEN_SOURCE macro.
No authorization is required.
inet_netof() returns an integer. Possible values are:
Top | UNIX-Type APIs | APIs by category |