File: getnetent.3

package info (click to toggle)
manpages-de 0.1-7
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 2,448 kB
  • ctags: 10
  • sloc: makefile: 90
file content (111 lines) | stat: -rw-r--r-- 3,683 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
.\" 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 21:48:06 1993 by Rik Faith (faith@cs.unc.edu)
.\" Translated to German Fri Nov 1 1996 by Patrick Rother (krd@gulu.net)
.\"
.TH GETNETENT 3  "1. November 1996" "BSD" "Bibliotheksfunktionen"
.SH NAME
getnetent, getnetbyname, getnetbyaddr, setnetent, endnetent \-
hole Netzwerkeintrag
.SH BERSICHT
.nf
.B #include <netdb.h>
.sp
.B struct netent *getnetent(void);
.sp
.BI "struct netent *getnetbyname(const char *" name );
.sp
.BI "struct netent *getnetbyaddr(long " net ", int " type );
.sp
.BI "void setnetent(int " stayopen );
.sp
.B void endnetent(void);
.fi
.SH DESCRIPTION
Die Funktion \fBgetnetent()\fP liest die nchste Zeile der Datei
\fI/etc/networks\fP und gibt eine Struktur \fInetent\fP zurck, die die 
Felder der Zeile enthlt.  Die Datei \fI/etc/networks\fP wird geffnet,
falls ntig.
.PP
Die Funktion \fBgetnetbyname()\fP gibt eine Struktur \fInetent\fP zurck
fr die Zeile aus
.IR /etc/networks ,
die dem Netz \fIname\fP entspricht.
.PP
Die Funktion \fBgetnetbyaddr()\fP gibt eine Struktur \fInetent\fP zurck
fr die Zeile, die der Netznummer \fInet\fP des Types \fItype\fP entspricht.
.PP
Die Funktion \fBsetnetent()\fP ffnet die Datei \fI/etc/networks\fP und setzt
den Dateizeiger auf den Anfang.  Wenn \fIstayopen\fP wahr ist (1), dann
wird die Datei nicht geschlossen zwischen Aufrufen von \fBgetnetbyname()\fP
und \fBgetnetbyaddr()\fP.
.PP
Die Funktion \fBendservent()\fP schliet \fI/etc/networks\fP.
.PP
Die Struktur \fInetent\fP ist definiert in \fI<netdb.h>\fP wie folgt:
.sp
.RS
.nf
.ne 6
.ta 8n 16n 34n
struct netent {
	char	*n_name;		/* offizieller Netzname */
	char	**n_aliases;		/* Aliasliste */
	int	n_addrtype;		/* Netzadressentyp */
	unsigned long int n_net;	/* Netznummer */
}
.ta
.fi
.RE
.PP
Die Eintrge der Struktur \fInetent\fP sind:
.TP
.I n_name
Der offizielle Name der Netzes.
.TP
.I n_aliases
Eine mit Null beendete Liste von alternativen Namen fr das Netz.
.TP
.I n_addrtype
Der Typ der Netznummer; immer AF_INET.
.TP
.I n_net
Die Netznummer in Host-Byte-Ordnung.
.SH "RCKGABEWERT"
Die Funktionen \fBgetnetent()\fP, \fBgetnetbyname()\fP und \fBgetnetbyaddr()\fP
geben die Struktur \fInetent\fP zurck, oder einen NULL-Zeiger wenn ein Fehler
auftritt oder das Ende der Liste erreicht ist.
.SH DATEIEN
.TP
.I /etc/networks
Netzwerkdatenbankdatei
.SH "KONFORM ZU"
BSD 4.3
.SH "SIEHE AUCH"
.BR getprotoent (3),
.BR getservent (3),
.BR networks (5).