1 /* Networks file parser in nss_files module.
2 Copyright (C) 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 #include <netinet/in.h>
21 #include <arpa/inet.h>
24 #define ENTNAME netent
25 #define DATABASE "networks"
28 struct netent_data
{};
30 #define TRAILING_LIST_MEMBER n_aliases
31 #define TRAILING_LIST_SEPARATOR_P isspace
32 #include "files-parse.c"
40 STRING_FIELD (result
->n_name
, isspace
, 1);
42 STRING_FIELD (addr
, isspace
, 1);
43 /* 'inet_network' does not add zeroes at the end if the network number
44 does not four byte values. We add them outselves if necessary. */
45 cp
= strchr (addr
, '.');
49 cp
= strchr (cp
+ 1, '.');
53 cp
= strchr (cp
+ 1, '.');
60 char *newp
= (char *) alloca (strlen (addr
) + (4 - n
) * 2 + 1);
61 cp
= stpcpy (newp
, addr
);
71 result
->n_net
= inet_network (addr
);
72 result
->n_addrtype
= AF_INET
;
76 #include "files-XXX.c"
78 DB_LOOKUP (netbyname
, ,,
79 LOOKUP_NAME_CASE (n_name
, n_aliases
),
82 DB_LOOKUP (netbyaddr
, ,,
84 if (result
->n_addrtype
== type
&& result
->n_net
== net
)
87 }, uint32_t net
, int type
)