NAME
getnetent, getnetbyname, getnetbyaddr, setnetent, endnetent - get network entry
SYNOPSIS
#include <netdb.h> struct netent *getnetent(void); struct netent *getnetbyname(const char *name); struct netent *getnetbyaddr(uint32_t net, int type); void setnetent(int stayopen); void endnetent(void);
DESCRIPTION
The getnetent() function reads the next entry from the networks database and returns a netent structure containing the broken-out fields from the entry. A connection is opened to the database if necessary. The getnetbyname() function returns a netent structure for the entry from the database that matches the network name. The getnetbyaddr() function returns a netent structure for the entry from the database that matches the network number net of type type. The net argument must be in host byte order. The setnetent() function opens a connection to the database, and sets the next entry to the first entry. If stayopen is nonzero, then the connection to the database will not be closed between calls to one of the getnet*() functions. The endnetent() function closes the connection to the database. The netent structure is defined in <netdb.h> as follows: struct netent { char *n_name; /* official network name */ char **n_aliases; /* alias list */ int n_addrtype; /* net address type */ uint32_t n_net; /* network number */ } The members of the netent structure are: n_name The official name of the network. n_aliases A NULL-terminated list of alternative names for the network. n_addrtype The type of the network number; always AF_INET. n_net The network number in host byte order.
RETURN VALUE
The getnetent(), getnetbyname() and getnetbyaddr() functions return a pointer to a statically allocated netent structure, or a null pointer if an error occurs or the end of the file is reached.
FILES
/etc/networks networks database file
ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7). ┌───────────────┬───────────────┬───────────────────────────┐ │Interface │ Attribute │ Value │ ├───────────────┼───────────────┼───────────────────────────┤ │getnetent() │ Thread safety │ MT-Unsafe race:netent │ │ │ │ race:netentbuf env locale │ ├───────────────┼───────────────┼───────────────────────────┤ │getnetbyname() │ Thread safety │ MT-Unsafe race:netbyname │ │ │ │ env locale │ ├───────────────┼───────────────┼───────────────────────────┤ │getnetbyaddr() │ Thread safety │ MT-Unsafe race:netbyaddr │ │ │ │ locale │ ├───────────────┼───────────────┼───────────────────────────┤ │setnetent(), │ Thread safety │ MT-Unsafe race:netent env │ │endnetent() │ │ locale │ └───────────────┴───────────────┴───────────────────────────┘ In the above table, netent in race:netent signifies that if any of the functions setnetent(), getnetent(), or endnetent() are used in parallel in different threads of a program, then data races could occur.
CONFORMING TO
POSIX.1-2001, POSIX.1-2008, 4.3BSD.
NOTES
In glibc versions before 2.2, the net argument of getnetbyaddr() was of type long.
SEE ALSO
getnetent_r(3), getprotoent(3), getservent(3) RFC 1101
COLOPHON
This page is part of release 4.09 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
More Linux Commands
manpages/fflush_unlocked.3.html
fflush_unlocked(3) - nonlocking stdio functions (Man Page)
Each of these functions has the same behavior as its counterpart without the _unlocked suffix, except that they do not use locking (they do not set locks themse
manpages/pcre16_jit_stack_free.3.html
pcre16_jit_stack_free(3) Perl-compatible regular expressions
This function is used to free a JIT stack that was created by pcre[16|32]_jit_stack_alloc() when it is no longer needed. For more details, see the pcrejit page.
manpages/Encode::KR.3pm.html
Encode::KR(3pm) - Korean Encodings - Linux manual page......
This module implements Korean charset encodings. Encodings supported are as follows. Canonical Alias Description -----------------------------------------------
manpages/acl_to_any_text.3.html
acl_to_any_text(3) - convert an ACL to text - Linux man page
The acl_to_any_text() function translates the ACL pointed to by the argument acl into a NULL terminated character string. This character string is composed of t
manpages/XtNextEvent.3.html
XtNextEvent(3) - query and process events and input.........
XtNextEvent has been replaced by XtAppNextEvent. XtPeekEvent has been replaced by XtAppPeekEvent. XtPending has been replaced by XtAppPending. XtProcessEvent ha
manpages/convdate.1.html
convdate(1) - Convert to/from RFC 5322 dates and seconds sin
convdate translates the date/time strings given on the command line, outputting the results one to a line. The input can either be a date in RFC 5322 format (ac
manpages/udisksctl.1.html
udisksctl(1) The udisks command line tool - Linux man page
udisksctl is a command-line program used to interact with the udisksd(8) daemon process. COMMANDS status Shows high-level information about disk drives and bloc
manpages/split.n.html
split(n) - Split a string into a proper Tcl list (Man Page)
Returns a list created by splitting string at each character that is in the splitChars argument. Each element of the result list will consist of the characters
manpages/gnutls_certificate_set_params_function.3.html
gnutls_certificate_set_params_function(3) - API function....
This function will set a callback in order for the server to get the Diffie-Hellman or RSA parameters for certificate authentication. The callback should return
manpages/postmulti.1.html
postmulti(1) - Postfix multi-instance manager (Man Page)....
The postmulti(1) command allows a Postfix administrator to manage multiple Postfix instances on a single host. postmulti(1) implements two fundamental modes of
manpages/FcCharSetNextPage.3.html
FcCharSetNextPage(3) - Continue enumerating charset contents
Builds an array of bits marking the Unicode coverage of a for page *next. Returns the base of the array. next contains the next page in the font. VERSION Fontco
manpages/XkbAddGeomProperty.3.html
XkbAddGeomProperty(3) - Add one property to an existing keyb
XkbAddGeomProperty.3 - Xkb provides functions to add a single new element to the top-level keyboard geometry. In each case the num_ * fields of the correspondin
