setprotoent Subroutine
Purpose
Opens the /etc/protocols file and sets the file marker.
Library
Standard C Library (libc.a)
Syntax
Description
The setprotoent subroutine is threadsafe. However, the return value points to static data that is overwritten by subsequent calls. This data must be copied to be saved for use by subsequent calls.
The setprotoent subroutine opens the /etc/protocols file and sets the file marker to the beginning of the file.
All applications containing the setprotoent subroutine must be compiled with the _BSD macro set to a specific value. Acceptable values are 43 and 44. In addition, all socket applications must include the BSD libbsd.a library.
Parameters
Item | Description |
---|---|
StayOpen | Indicates when to close the /etc/protocols file. Specifying a value of 0 closes the file after each call to getprotoent. Specifying a nonzero value allows the /etc/protocols file to remain open after each subroutine. |
Return Values
The return value points to static data that is overwritten by subsequent calls.
Files
Item | Description |
---|---|
/etc/protocols | Contains the protocol names. |