.\" Copyright (c) 1983 The Regents of the University of California. .\" All rights reserved. .\" .\" Redistribution and use in source and binary forms are permitted provided .\" that: (1) source distributions retain this entire copyright notice and .\" comment, and (2) distributions including binaries display the following .\" acknowledgement: ``This product includes software developed by the .\" University of California, Berkeley and its contributors'' in the .\" documentation or other materials provided with the distribution and in .\" all advertising materials mentioning features or use of this software. .\" Neither the name of the University nor the names of its contributors may .\" be used to endorse or promote products derived from this software without .\" specific prior written permission. .\" THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED .\" WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF .\" MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. .\" .\" @(#)getservent.3 6.5 (Berkeley) 6/23/90 .\" .TH GETSERVENT 3 "June 23, 1990" .UC 5 .SH NAME getservent, getservbyport, getservbyname, setservent, endservent \- get service entry .SH SYNOPSIS .nf .ft B #include .PP .ft B struct servent *getservent() .PP .ft B struct servent *getservbyname(name, proto) char *name, *proto; .PP .ft B struct servent *getservbyport(port, proto) int port; char *proto; .PP .ft B setservent(stayopen) int stayopen .PP .ft B endservent() .fi .SH DESCRIPTION .IR Getservent , .IR getservbyname , and .I getservbyport each return a pointer to an object with the following structure containing the broken-out fields of a line in the network services data base, .IR /etc/services . .RS .PP .nf struct servent { char *s_name; /* official name of service */ char **s_aliases; /* alias list */ int s_port; /* port service resides at */ char *s_proto; /* protocol to use */ }; .ft R .ad .fi .RE .PP The members of this structure are: .TP \w's_aliases'u+2n s_name The official name of the service. .TP \w's_aliases'u+2n s_aliases A zero terminated list of alternate names for the service. .TP \w's_aliases'u+2n s_port The port number at which the service resides. Port numbers are returned in network byte order. .TP \w's_aliases'u+2n s_proto The name of the protocol to use when contacting the service. .PP .I Getservent reads the next line of the file, opening the file if necessary. .PP .I Setservent opens and rewinds the file. If the .I stayopen flag is non-zero, the net data base will not be closed after each call to .I getservbyname or .IR getservbyport . .PP .I Endservent closes the file. .PP .I Getservbyname and .I getservbyport sequentially search from the beginning of the file until a matching protocol name or port number is found, or until EOF is encountered. If a protocol name is also supplied (non-NULL), searches must also match the protocol. .SH FILES /etc/services .SH "SEE ALSO" getprotoent(3), services(5) .SH DIAGNOSTICS Null pointer (0) returned on EOF or error. .SH BUGS All information is contained in a static area so it must be copied if it is to be saved. Expecting port numbers to fit in a 32 bit quantity is probably naive.