inet_aton()
Convert a string into an Internet address stored in a structure
Synopsis:
#include <sys/socket.h> #include <netinet/in.h> #include <arpa/inet.h> int inet_aton( const char * cp, struct in_addr * addr );
Arguments:
- cp
- A pointer to the character string.
- addr
- A pointer to a in_addr structure where the function can store the converted address.
Library:
libsocket
Use the -l socket option to qcc to link against this library.
Description:
The inet_aton() routine interprets the specified character string as an IPv4 Internet address, placing the address into the structure provided.
All Internet addresses are returned in network byte order (bytes are ordered from left to right). All network numbers and local address parts are returned as machine-format integer values.
For more information on Internet addresses, see inet_net_ntop() .
Returns:
- 1
- Success; the string was successfully interpreted.
- 0
- Failure; the string is invalid.
Classification:
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |