]> git.ipfire.org Git - thirdparty/squid.git/blame - helpers/external_acl/ip_user/dict.c
SourceFormat: enforcement
[thirdparty/squid.git] / helpers / external_acl / ip_user / dict.c
CommitLineData
262a0e14 1/* $Id$
6435edf3 2* Copyright (C) 2002 Rodrigo Campos
3*
4* This program is free software; you can redistribute it and/or modify
5* it under the terms of the GNU General Public License as published by
6* the Free Software Foundation; either version 2 of the License, or
7* (at your option) any later version.
26ac0430 8*
6435edf3 9* This program is distributed in the hope that it will be useful,
10* but WITHOUT ANY WARRANTY; without even the implied warranty of
11* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12* GNU General Public License for more details.
26ac0430 13*
6435edf3 14* You should have received a copy of the GNU General Public License
15* along with this program; if not, write to the Free Software
16* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17*
18* Author: Rodrigo Campos (rodrigo@geekbunker.org)
26ac0430 19*
6435edf3 20*/
26ac0430 21
6435edf3 22#include <stdio.h>
23#include <stdlib.h>
24#include <string.h>
25#include <sys/types.h>
26#include <sys/socket.h>
27#include <netinet/in.h>
28#include <arpa/inet.h>
29
30#include "ip_user.h"
31
32#ifndef DEBUG
33#undef DEBUG
34#endif
35
36
26ac0430 37/* This function parses the dictionary file and loads it
6435edf3 38 * in memory. All IP addresses are processed with a bitwise AND
39 * with their netmasks before they are stored.
40