Blame man3/getservent.3

Packit 7cfc04
.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(VERBATIM)
Packit 7cfc04
.\" Permission is granted to make and distribute verbatim copies of this
Packit 7cfc04
.\" manual provided the copyright notice and this permission notice are
Packit 7cfc04
.\" preserved on all copies.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Permission is granted to copy and distribute modified versions of this
Packit 7cfc04
.\" manual under the conditions for verbatim copying, provided that the
Packit 7cfc04
.\" entire resulting derived work is distributed under the terms of a
Packit 7cfc04
.\" permission notice identical to this one.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Since the Linux kernel and libraries are constantly changing, this
Packit 7cfc04
.\" manual page may be incorrect or out-of-date.  The author(s) assume no
Packit 7cfc04
.\" responsibility for errors or omissions, or for damages resulting from
Packit 7cfc04
.\" the use of the information contained herein.  The author(s) may not
Packit 7cfc04
.\" have taken the same level of care in the production of this manual,
Packit 7cfc04
.\" which is licensed free of charge, as they might when working
Packit 7cfc04
.\" professionally.
Packit 7cfc04
.\"
Packit 7cfc04
.\" Formatted or processed versions of this manual, if unaccompanied by
Packit 7cfc04
.\" the source, must acknowledge the copyright and authors of this work.
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.\" References consulted:
Packit 7cfc04
.\"     Linux libc source code
Packit 7cfc04
.\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
Packit 7cfc04
.\"     386BSD man pages
Packit 7cfc04
.\" Modified Sat Jul 24 19:19:11 1993 by Rik Faith (faith@cs.unc.edu)
Packit 7cfc04
.\" Modified Wed Oct 18 20:23:54 1995 by Martin Schulze <joey@infodrom.north.de>
Packit 7cfc04
.\" Modified Mon Apr 22 01:50:54 1996 by Martin Schulze <joey@infodrom.north.de>
Packit 7cfc04
.\" 2001-07-25 added a clause about NULL proto (Martin Michlmayr or David N. Welton)
Packit 7cfc04
.\"
Packit 7cfc04
.TH GETSERVENT 3  2017-09-15 "GNU" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
getservent, getservbyname, getservbyport, setservent, endservent \-
Packit 7cfc04
get service entry
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.nf
Packit 7cfc04
.B #include <netdb.h>
Packit 7cfc04
.PP
Packit 7cfc04
.B struct servent *getservent(void);
Packit 7cfc04
.PP
Packit 7cfc04
.BI "struct servent *getservbyname(const char *" name ", const char *" proto );
Packit 7cfc04
.PP
Packit 7cfc04
.BI "struct servent *getservbyport(int " port ", const char *" proto );
Packit 7cfc04
.PP
Packit 7cfc04
.BI "void setservent(int " stayopen );
Packit 7cfc04
.PP
Packit 7cfc04
.B void endservent(void);
Packit 7cfc04
.fi
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
The
Packit 7cfc04
.BR getservent ()
Packit 7cfc04
function reads the next entry from the services database (see
Packit 7cfc04
.BR services (5))
Packit 7cfc04
and returns a
Packit 7cfc04
.I servent
Packit 7cfc04
structure containing
Packit 7cfc04
the broken-out fields from the entry.
Packit 7cfc04
A connection is opened to the database if necessary.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.BR getservbyname ()
Packit 7cfc04
function returns a
Packit 7cfc04
.I servent
Packit 7cfc04
structure
Packit 7cfc04
for the entry from the database
Packit 7cfc04
that matches the service
Packit 7cfc04
.I name
Packit 7cfc04
using protocol
Packit 7cfc04
.IR proto .
Packit 7cfc04
If
Packit 7cfc04
.I proto
Packit 7cfc04
is NULL, any protocol will be matched.
Packit 7cfc04
A connection is opened to the database if necessary.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.BR getservbyport ()
Packit 7cfc04
function returns a
Packit 7cfc04
.I servent
Packit 7cfc04
structure
Packit 7cfc04
for the entry from the database
Packit 7cfc04
that matches the port
Packit 7cfc04
.I port
Packit 7cfc04
(given in network byte order)
Packit 7cfc04
using protocol
Packit 7cfc04
.IR proto .
Packit 7cfc04
If
Packit 7cfc04
.I proto
Packit 7cfc04
is NULL, any protocol will be matched.
Packit 7cfc04
A connection is opened to the database if necessary.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.BR setservent ()
Packit 7cfc04
function opens a connection to the database,
Packit 7cfc04
and sets the next entry to the first entry.
Packit 7cfc04
If
Packit 7cfc04
.I stayopen
Packit 7cfc04
is nonzero,
Packit 7cfc04
then the connection to the database
Packit 7cfc04
will not be closed between calls to one of the
Packit 7cfc04
.BR getserv* ()
Packit 7cfc04
functions.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.BR endservent ()
Packit 7cfc04
function closes the connection to the database.
Packit 7cfc04
.PP
Packit 7cfc04
The
Packit 7cfc04
.I servent
Packit 7cfc04
structure is defined in
Packit 7cfc04
.I <netdb.h>
Packit 7cfc04
as follows:
Packit 7cfc04
.PP
Packit 7cfc04
.in +4n
Packit 7cfc04
.EX
Packit 7cfc04
struct servent {
Packit 7cfc04
    char  *s_name;       /* official service name */
Packit 7cfc04
    char **s_aliases;    /* alias list */
Packit 7cfc04
    int    s_port;       /* port number */
Packit 7cfc04
    char  *s_proto;      /* protocol to use */
Packit 7cfc04
}
Packit 7cfc04
.EE
Packit 7cfc04
.in
Packit 7cfc04
.PP
Packit 7cfc04
The members of the
Packit 7cfc04
.I servent
Packit 7cfc04
structure are:
Packit 7cfc04
.TP
Packit 7cfc04
.I s_name
Packit 7cfc04
The official name of the service.
Packit 7cfc04
.TP
Packit 7cfc04
.I s_aliases
Packit 7cfc04
A NULL-terminated list of alternative names for the service.
Packit 7cfc04
.TP
Packit 7cfc04
.I s_port
Packit 7cfc04
The port number for the service given in network byte order.
Packit 7cfc04
.TP
Packit 7cfc04
.I s_proto
Packit 7cfc04
The name of the protocol to use with this service.
Packit 7cfc04
.SH RETURN VALUE
Packit 7cfc04
The
Packit 7cfc04
.BR getservent (),
Packit 7cfc04
.BR getservbyname ()
Packit 7cfc04
and
Packit 7cfc04
.BR getservbyport ()
Packit 7cfc04
functions return a pointer to a
Packit 7cfc04
statically allocated
Packit 7cfc04
.I servent
Packit 7cfc04
structure, or NULL if an
Packit 7cfc04
error occurs or the end of the file is reached.
Packit 7cfc04
.SH FILES
Packit 7cfc04
.TP
Packit 7cfc04
.I /etc/services
Packit 7cfc04
services database file
Packit 7cfc04
.SH ATTRIBUTES
Packit 7cfc04
For an explanation of the terms used in this section, see
Packit 7cfc04
.BR attributes (7).
Packit 7cfc04
.TS
Packit 7cfc04
allbox;
Packit 7cfc04
lbw15 lb lbw25
Packit 7cfc04
l l l.
Packit 7cfc04
Interface	Attribute	Value
Packit 7cfc04
T{
Packit 7cfc04
.BR getservent ()
Packit 7cfc04
T}	Thread safety	T{
Packit 7cfc04
MT-Unsafe race:servent
Packit 7cfc04
.br
Packit 7cfc04
race:serventbuf locale
Packit 7cfc04
T}
Packit 7cfc04
T{
Packit 7cfc04
.BR getservbyname ()
Packit 7cfc04
T}	Thread safety	T{
Packit 7cfc04
MT-Unsafe race:servbyname
Packit 7cfc04
.br
Packit 7cfc04
locale
Packit 7cfc04
T}
Packit 7cfc04
T{
Packit 7cfc04
.BR getservbyport ()
Packit 7cfc04
T}	Thread safety	T{
Packit 7cfc04
MT-Unsafe race:servbyport
Packit 7cfc04
.br
Packit 7cfc04
locale
Packit 7cfc04
T}
Packit 7cfc04
T{
Packit 7cfc04
.BR setservent (),
Packit 7cfc04
.br
Packit 7cfc04
.BR endservent ()
Packit 7cfc04
T}	Thread safety	T{
Packit 7cfc04
MT-Unsafe race:servent
Packit 7cfc04
.br
Packit 7cfc04
locale
Packit 7cfc04
T}
Packit 7cfc04
.TE
Packit 7cfc04
.sp 1
Packit 7cfc04
In the above table,
Packit 7cfc04
.I servent
Packit 7cfc04
in
Packit 7cfc04
.I race:servent
Packit 7cfc04
signifies that if any of the functions
Packit 7cfc04
.BR setservent (),
Packit 7cfc04
.BR getservent (),
Packit 7cfc04
or
Packit 7cfc04
.BR endservent ()
Packit 7cfc04
are used in parallel in different threads of a program,
Packit 7cfc04
then data races could occur.
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
POSIX.1-2001, POSIX.1-2008, 4.3BSD.
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR getnetent (3),
Packit 7cfc04
.BR getprotoent (3),
Packit 7cfc04
.BR getservent_r (3),
Packit 7cfc04
.BR services (5)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.