]> git.proxmox.com Git - mirror_edk2.git/blame - StdLib/Include/net/servent.h
Fix a bug about the iSCSI DHCP dependency issue.
[mirror_edk2.git] / StdLib / Include / net / servent.h
CommitLineData
3bdf9aae 1/* $NetBSD: servent.h,v 1.3 2008/04/28 20:23:00 martin Exp $ */\r
2\r
3/*-\r
4 * Copyright (c) 2004 The NetBSD Foundation, Inc.\r
5 * All rights reserved.\r
6 *\r
7 * This code is derived from software contributed to The NetBSD Foundation\r
8 * by Christos Zoulas.\r
9 *\r
10 * Redistribution and use in source and binary forms, with or without\r
11 * modification, are permitted provided that the following conditions\r
12 * are met:\r
13 * 1. Redistributions of source code must retain the above copyright\r
14 * notice, this list of conditions and the following disclaimer.\r
15 * 2. Redistributions in binary form must reproduce the above copyright\r
16 * notice, this list of conditions and the following disclaimer in the\r
17 * documentation and/or other materials provided with the distribution.\r
18 *\r
19 * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS\r
20 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED\r
21 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR\r
22 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS\r
23 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\r
24 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF\r
25 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS\r
26 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN\r
27 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)\r
28 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE\r
29 * POSSIBILITY OF SUCH DAMAGE.\r
30 */\r
31\r
32#include <stdio.h>\r
33\r
34struct servent_data {\r
35 void *db;\r
36 struct servent serv;\r
37 char **aliases;\r
38 size_t maxaliases;\r
39 int flags;\r
40#define _SV_STAYOPEN 1\r
41#define _SV_DB 2\r
42#define _SV_FIRST 4\r
43 char *line;\r
44 void *dummy;\r
45};\r
46\r
47#if 0\r
48struct servent *getservent_r(struct servent *, struct servent_data *);\r
49struct servent *getservbyname_r(const char *, const char *,\r
50 struct servent *, struct servent_data *);\r
51struct servent *getservbyport_r(int, const char *,\r
52 struct servent *, struct servent_data *);\r
53void setservent_r(int, struct servent_data *);\r
54void endservent_r(struct servent_data *);\r
55#endif // 0\r
56\r
57int _servent_open(struct servent_data *);\r
58void _servent_close(struct servent_data *);\r
59int _servent_getline(struct servent_data *);\r
60struct servent *_servent_parseline(struct servent_data *, struct servent *);\r