Manual Page Result
0
Command: endprotoent_r | Section: 3 | Source: Digital UNIX | File: endprotoent_r.3.gz
endprotoent(3) Library Functions Manual endprotoent(3)
NAME
endprotoent, endprotoent_r - Close the network protocols database file
LIBRARY
Standard C Library (libc.so, libc.a)
SYNOPSIS
#include <netdb.h>
void endprotoent(void);
[Digital] The following function is supported in order to maintain
backward compatibility with previous versions of the operating system.
void endprotoent_r(
struct protoent_data *proto_data);
STANDARDS
Interfaces documented on this reference page conform to industry stan-
dards as follows:
endprotoent(): XPG4-UNIX
Refer to the standards(5) reference page for more information about in-
dustry standards and associated tags.
PARAMETERS
[Digital] For endprotoent_r() only, this is data for the protocol
database.
DESCRIPTION
The endprotoent() function closes either the local /etc/protocols file
or the NIS distributed protocols file, previously opened with the get-
protoent(), getprotobyname(), or getprotobynumber() function. To deter-
mine which file or files to search, and in which order, the system uses
the switches in the /etc/svc.conf file.
If the most recent setprotent() function has been performed with a
nonzero parameter, the endprotoent() function will not close the net-
work protocols database file. In this instance, the network protocols
database file is not closed until a call to the exit() function. A
second setprotent() call must be issued with a parameter equal to 0
(zero) in order to ensure that a following endprotoent() function will
succeed.
NOTES
[Digital] The endprotoent_r() function is the reentrant version of the
endprotoent() function. It is supported in order to maintain backward
compatibility with previous versions of the operating system. The
netdb.h header file defines the protoent_data structure.
ERRORS
Current industry standards do not define error values for the endpro-
toent() function.
FILES
Contains protocol names. The database service selection configuration
file.
RELATED INFORMATION
Functions: getprotoent(3), getprotobynumber(3), getprotobyname(3), set-
protoent(3).
Files: protocols(4), svc.conf(4)
Networks: nis_intro(7)
Standards: standards(5) delim off
endprotoent(3)