xref: /freebsd/lib/libc/net/getservent.3 (revision dc36d6f9)
158f0484fSRodney W. Grimes.\" Copyright (c) 1983, 1991, 1993
258f0484fSRodney W. Grimes.\"	The Regents of the University of California.  All rights reserved.
358f0484fSRodney W. Grimes.\"
458f0484fSRodney W. Grimes.\" Redistribution and use in source and binary forms, with or without
558f0484fSRodney W. Grimes.\" modification, are permitted provided that the following conditions
658f0484fSRodney W. Grimes.\" are met:
758f0484fSRodney W. Grimes.\" 1. Redistributions of source code must retain the above copyright
858f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer.
958f0484fSRodney W. Grimes.\" 2. Redistributions in binary form must reproduce the above copyright
1058f0484fSRodney W. Grimes.\"    notice, this list of conditions and the following disclaimer in the
1158f0484fSRodney W. Grimes.\"    documentation and/or other materials provided with the distribution.
12fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
1358f0484fSRodney W. Grimes.\"    may be used to endorse or promote products derived from this software
1458f0484fSRodney W. Grimes.\"    without specific prior written permission.
1558f0484fSRodney W. Grimes.\"
1658f0484fSRodney W. Grimes.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
1758f0484fSRodney W. Grimes.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1858f0484fSRodney W. Grimes.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1958f0484fSRodney W. Grimes.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
2058f0484fSRodney W. Grimes.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
2158f0484fSRodney W. Grimes.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2258f0484fSRodney W. Grimes.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2358f0484fSRodney W. Grimes.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2458f0484fSRodney W. Grimes.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2558f0484fSRodney W. Grimes.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2658f0484fSRodney W. Grimes.\" SUCH DAMAGE.
2758f0484fSRodney W. Grimes.\"
280393604aSGordon Bergling.Dd December 7, 2020
2958f0484fSRodney W. Grimes.Dt GETSERVENT 3
30a307d598SRuslan Ermilov.Os
3158f0484fSRodney W. Grimes.Sh NAME
3258f0484fSRodney W. Grimes.Nm getservent ,
3358f0484fSRodney W. Grimes.Nm getservbyport ,
3458f0484fSRodney W. Grimes.Nm getservbyname ,
3558f0484fSRodney W. Grimes.Nm setservent ,
3658f0484fSRodney W. Grimes.Nm endservent
3758f0484fSRodney W. Grimes.Nd get service entry
3825bb73e0SAlexey Zelkin.Sh LIBRARY
3925bb73e0SAlexey Zelkin.Lb libc
4058f0484fSRodney W. Grimes.Sh SYNOPSIS
4132eef9aeSRuslan Ermilov.In netdb.h
4258f0484fSRodney W. Grimes.Ft struct servent *
4358f0484fSRodney W. Grimes.Fn getservent
4458f0484fSRodney W. Grimes.Ft struct servent *
452c413cbeSJoerg Wunsch.Fn getservbyname "const char *name" "const char *proto"
4658f0484fSRodney W. Grimes.Ft struct servent *
472c413cbeSJoerg Wunsch.Fn getservbyport "int port" "const char *proto"
4858f0484fSRodney W. Grimes.Ft void
4958f0484fSRodney W. Grimes.Fn setservent "int stayopen"
5058f0484fSRodney W. Grimes.Ft void
5158f0484fSRodney W. Grimes.Fn endservent void
5258f0484fSRodney W. Grimes.Sh DESCRIPTION
5358f0484fSRodney W. GrimesThe
5458f0484fSRodney W. Grimes.Fn getservent ,
5558f0484fSRodney W. Grimes.Fn getservbyname ,
5658f0484fSRodney W. Grimesand
5758f0484fSRodney W. Grimes.Fn getservbyport
5858f0484fSRodney W. Grimesfunctions
5958f0484fSRodney W. Grimeseach return a pointer to an object with the
6058f0484fSRodney W. Grimesfollowing structure
6158f0484fSRodney W. Grimescontaining the broken-out
6258f0484fSRodney W. Grimesfields of a line in the network services data base,
6358f0484fSRodney W. Grimes.Pa /etc/services .
6458f0484fSRodney W. Grimes.Bd -literal -offset indent
6558f0484fSRodney W. Grimesstruct servent {
6658f0484fSRodney W. Grimes	char	*s_name;	/* official name of service */
6758f0484fSRodney W. Grimes	char	**s_aliases;	/* alias list */
6858f0484fSRodney W. Grimes	int	s_port;		/* port service resides at */
6958f0484fSRodney W. Grimes	char	*s_proto;	/* protocol to use */
7058f0484fSRodney W. Grimes};
7158f0484fSRodney W. Grimes.Ed
7258f0484fSRodney W. Grimes.Pp
7358f0484fSRodney W. GrimesThe members of this structure are:
7458f0484fSRodney W. Grimes.Bl -tag -width s_aliases
7558f0484fSRodney W. Grimes.It Fa s_name
7658f0484fSRodney W. GrimesThe official name of the service.
7758f0484fSRodney W. Grimes.It Fa s_aliases
7858f0484fSRodney W. GrimesA zero terminated list of alternate names for the service.
7958f0484fSRodney W. Grimes.It Fa s_port
8058f0484fSRodney W. GrimesThe port number at which the service resides.
8158f0484fSRodney W. GrimesPort numbers are returned in network byte order.
8258f0484fSRodney W. Grimes.It Fa s_proto
8358f0484fSRodney W. GrimesThe name of the protocol to use when contacting the
8458f0484fSRodney W. Grimesservice.
8558f0484fSRodney W. Grimes.El
8658f0484fSRodney W. Grimes.Pp
8758f0484fSRodney W. GrimesThe
8858f0484fSRodney W. Grimes.Fn getservent
8958f0484fSRodney W. Grimesfunction
9058f0484fSRodney W. Grimesreads the next line of the file, opening the file if necessary.
9158f0484fSRodney W. Grimes.Pp
9258f0484fSRodney W. GrimesThe
9358f0484fSRodney W. Grimes.Fn setservent
9458f0484fSRodney W. Grimesfunction
951a0a9345SRuslan Ermilovopens and rewinds the file.
961a0a9345SRuslan ErmilovIf the
9758f0484fSRodney W. Grimes.Fa stayopen
9858f0484fSRodney W. Grimesflag is non-zero,
9958f0484fSRodney W. Grimesthe net data base will not be closed after each call to
10058f0484fSRodney W. Grimes.Fn getservbyname
10158f0484fSRodney W. Grimesor
10258f0484fSRodney W. Grimes.Fn getservbyport .
10358f0484fSRodney W. Grimes.Pp
10458f0484fSRodney W. GrimesThe
10558f0484fSRodney W. Grimes.Fn endservent
10658f0484fSRodney W. Grimesfunction
10758f0484fSRodney W. Grimescloses the file.
10858f0484fSRodney W. Grimes.Pp
10958f0484fSRodney W. GrimesThe
11058f0484fSRodney W. Grimes.Fn getservbyname
11158f0484fSRodney W. Grimesand
11258f0484fSRodney W. Grimes.Fn getservbyport
11358f0484fSRodney W. Grimesfunctions
11458f0484fSRodney W. Grimessequentially search from the beginning
11558f0484fSRodney W. Grimesof the file until a matching
11658f0484fSRodney W. Grimesprotocol name or
11742b47d96SGuy Helmerport number (which must be specified in
11842b47d96SGuy Helmernetwork byte order) is found,
11958f0484fSRodney W. Grimesor until
12058f0484fSRodney W. Grimes.Dv EOF
12158f0484fSRodney W. Grimesis encountered.
12258f0484fSRodney W. GrimesIf a protocol name is also supplied (non-
12358f0484fSRodney W. Grimes.Dv NULL ) ,
12458f0484fSRodney W. Grimessearches must also match the protocol.
12558f0484fSRodney W. Grimes.Sh FILES
12658f0484fSRodney W. Grimes.Bl -tag -width /etc/services -compact
12758f0484fSRodney W. Grimes.It Pa /etc/services
1280393604aSGordon Bergling.It Pa /var/db/services.db
12958f0484fSRodney W. Grimes.El
13058f0484fSRodney W. Grimes.Sh DIAGNOSTICS
13157446011SKevin LoNull pointer returned on
13258f0484fSRodney W. Grimes.Dv EOF
13358f0484fSRodney W. Grimesor error.
13458f0484fSRodney W. Grimes.Sh SEE ALSO
13558f0484fSRodney W. Grimes.Xr getprotoent 3 ,
1360393604aSGordon Bergling.Xr services 5 ,
1370393604aSGordon Bergling.Xr services_mkdb 8
13858f0484fSRodney W. Grimes.Sh HISTORY
13958f0484fSRodney W. GrimesThe
14058f0484fSRodney W. Grimes.Fn getservent ,
14158f0484fSRodney W. Grimes.Fn getservbyport ,
14258f0484fSRodney W. Grimes.Fn getservbyname ,
14358f0484fSRodney W. Grimes.Fn setservent ,
14458f0484fSRodney W. Grimesand
14558f0484fSRodney W. Grimes.Fn endservent
14658f0484fSRodney W. Grimesfunctions appeared in
14758f0484fSRodney W. Grimes.Bx 4.2 .
14858f0484fSRodney W. Grimes.Sh BUGS
149b190ee61SHajimu UMEMOTOThese functions use a thread-specific data storage;
15058f0484fSRodney W. Grimesif the data is needed for future use, it should be
15158f0484fSRodney W. Grimescopied before any subsequent calls overwrite it.
15258f0484fSRodney W. GrimesExpecting port numbers to fit in a 32 bit
15358f0484fSRodney W. Grimesquantity is probably naive.
154