Middleware, development tools, realtime operating system
software and services for superior embedded design


Home
QNX Community Resources
Developer Support
QNX Documentation Library
QNX Developer Support

QNX Developer Support

QNX Software Systems
Developer Resources
Blogs
Board support packages
Foundry27 projects
Forums
Hardware support listing
Online video tutorials
Product documentation
Technical Articles

[Previous] [Contents] [Index] [Next]

getnetent()

Read the next line of the network name database file

Synopsis:

#include <netdb.h>

struct netent * getnetent( void );

Library:

libsocket

Use the -l socket option to qcc to link against this library.

Description:

The getnetent() function reads the next line of the network name database file, opening the file if necessary. It returns a pointer to a structure of type netent, which contains the broken-out fields of a line in the network database, /etc/networks.

Returns:

A pointer to a valid netent structure, or NULL if an error occurs.

Files:

/etc/networks
Network name database file.

Classification:

POSIX 1003.1

Safety:
Cancellation point Yes
Interrupt handler No
Signal handler No
Thread No

See also:

endnetent(), getnetbyaddr(), getnetbyname(), netent, setnetent()

/etc/networks in the Utilities Reference


[Previous] [Contents] [Index] [Next]