]> git.ipfire.org Git - thirdparty/squid.git/blame - helpers/external_acl/ip_user/ip_user.h
Cleanup: zap CVS Id tags
[thirdparty/squid.git] / helpers / external_acl / ip_user / ip_user.h
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*/
21
22
23
24
26ac0430
AJ
25struct ip_user_dict {
26 unsigned long address;
27 unsigned long netmask;
28 char *username;
29 struct ip_user_dict *next_entry;
6435edf3 30};
31
32extern int match_user(char *, char *);
33extern int match_group(char *, char *);
34extern struct ip_user_dict *load_dict(FILE *);
35extern int dict_lookup(struct ip_user_dict *, char *, char *);
36
37
38#define BUFSIZE 1024