]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ident.h
Merged from trunk.
[thirdparty/squid.git] / src / ident.h
1 /*
2 * $Id$
3 */
4 #ifndef SQUID_IDENT_H
5 #define SQUID_IDENT_H
6
7 /*
8 \defgroup IdentAPI Ident Lookup API
9 \ingroup SquidComponents
10 *
11 */
12
13 #include "config.h"
14
15 #if USE_IDENT
16
17 #include "cbdata.h"
18
19 class IPAddress;
20
21 /// \ingroup IdentAPI
22 SQUIDCEXTERN void identStart(IPAddress &me, IPAddress &my_peer, IDCB * callback, void *cbdata);
23
24 /// \ingroup IdentAPI
25 SQUIDCEXTERN void identInit(void);
26
27 #endif /* USE_IDENT */
28 #endif /* SQUID_IDENT_H */