.\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk) .\" .\" Permission is granted to make and distribute verbatim copies of this .\" manual provided the copyright notice and this permission notice are .\" preserved on all copies. .\" .\" Permission is granted to copy and distribute modified versions of this .\" manual under the conditions for verbatim copying, provided that the .\" entire resulting derived work is distributed under the terms of a .\" permission notice identical to this one .\" .\" Since the Linux kernel and libraries are constantly changing, this .\" manual page may be incorrect or out-of-date. The author(s) assume no .\" responsibility for errors or omissions, or for damages resulting from .\" the use of the information contained herein. The author(s) may not .\" have taken the same level of care in the production of this manual, .\" which is licensed free of charge, as they might when working .\" professionally. .\" .\" Formatted or processed versions of this manual, if unaccompanied by .\" the source, must acknowledge the copyright and authors of this work. .\" .\" References consulted: .\" Linux libc source code .\" Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991) .\" 386BSD man pages .\" Modified Sat Jul 24 19:19:11 1993 by Rik Faith (faith@cs.unc.edu) .\" Modified Wed Oct 18 20:23:54 1995 by Martin Schulze .\" Modified Mon Apr 22 01:50:54 1996 by Martin Schulze .\" Translated to German Fri Nov 1 1996 by Patrick Rother .\" .TH GETSERVENT 3 "1. November 1996" "BSD" "Bibliotheksfunktionen" .SH BEZEICHNUNG getservent, getservbyname, getservbyport, setservent, endservent \- hole Dienstdateieintrag .SH ÜBERSICHT .nf .B #include .sp .B struct servent *getservent(void); .sp .BI "struct servent *getservbyname(const char *" name ", const char *" proto ); .sp .BI "struct servent *getservbyport(int " port ", const char *" proto ); .sp .BI "void setservent(int " stayopen ); .sp .B void endservent(void); .fi .SH BESCHREIBUNG Die Funktion .B getservent() liest die nächste Zeile der Datei .I /etc/services und gibt eine Struktur .I servent zurück, die die Felder der Zeile enthält. Die Datei .I /etc/services wird geöffnet, falls nötig. .PP Die Funktion .B getservbyname() gibt eine Struktur .I servent zurück für die Zeile aus .I /etc/services die dem Dienst .I name entspricht, der Protokoll .I proto benutzt. .PP Die Funktion .B getservbyport() gibt eine Struktur .I servent zurück für die Zeile, die dem Port .IR port , angegeben in Netzwerk-Byte-Ordnung, entspricht, der Protokoll .I proto benutzt. .PP Die Funktion .B setservent() öffnet die Datei .I /etc/services und setzt den Dateizeigen auf den Anfang. Wenn .I stayopen wahr (1) ist, dann wird die Datei nicht geschlossen zwischen Aufrugen von .BR getservbyname() " und " getservbyport() . .PP Die Funktion .B endservent() schließt .IR /etc/services . .PP Die Struktur .IR servent " ist in " wie folgt definiert: .sp .RS .nf .ne 6 .ta 8n 16n 32n struct servent { char *s_name; /* offizieller Dienstname */ char **s_aliases; /* Aliasliste */ int s_port; /* Portnummer */ char *s_proto; /* zu benutzendes Protokoll */ } .ta .fi .RE .PP Die Einträge der Struktur .I servent sind: .TP .I s_name Der offizielle Name der Dienstes. .TP .I s_aliases Eine mit Null beendete Liste von alternativen Namen für den Dienst. .TP .I s_port Die Portnummer angegeben in Netzwerk-Byte-Ordnung. .TP .I s_proto Der Name des Protokolles, das mit diesem Dienst zu benutzen ist. .SH "RÜCKGABEWERT" Die Funktionen .BR getservent() ", " getservbyname() " und " getservbyport() geben die Struktur .I servent zurück oder einen NULL-Zeiger wenn ein Fehler auftritt bzw. das Ende der Liste erreicht ist. .SH DATEIEN .TP .I /etc/services Dienstdatenbankdatei .SH "KONFORM ZU" BSD 4.3 .SH "SIEHE AUCH" .BR getprotoent (3), .BR getnetent (3), .BR services (5).