Get a network entry, given a name
#include <netdb.h> struct netent * getnetbyname( const char * name );
BlackBerry 10.0.0
The getnetbyname() function gets the network entry for the given name. This function returns a pointer to a structure of type netent , which contains the broken-out fields of a line in the network database, /etc/networks.
The setnetent() function opens and rewinds the file. If you pass a nonzero stayopen argument to setnetent(), the network database isn't closed after each call to getnetbyname() or getnetbyaddr() .
The getnetbyaddr() and getnetbyname() functions sequentially search from the beginning of the file until a matching net name or net address and type is found, or until EOF is encountered. Network numbers are supplied in host order.
A pointer to a valid netent structure, or NULL if an error occurs.
| Safety: | |
|---|---|
| Cancellation point | Yes |
| Interrupt handler | No |
| Signal handler | No |
| Thread | No |