]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/fqdncache.h
SourceFormat Enforcement
[thirdparty/squid.git] / src / fqdncache.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 1996-2017 The Squid Software Foundation and contributors
3 *
4 * Squid software is distributed under GPLv2+ license and includes
5 * contributions from numerous individuals and organizations.
6 * Please see the COPYING and CONTRIBUTORS files for details.
7 */
8
9/* DEBUG: section 35 FQDN Cache */
10
11#ifndef SQUID_FQDNCACHE_H_
12#define SQUID_FQDNCACHE_H_
13
14#include "ip/Address.h"
15#include "sbuf/forward.h"
16
17class StoreEntry;
18namespace Dns
19{
20class LookupDetails;
21}
22
23typedef void FQDNH(const char *, const Dns::LookupDetails &details, void *);
24
25void fqdncache_init(void);
26void fqdnStats(StoreEntry *);
27void fqdncacheFreeMemory(void);
28void fqdncache_restart(void);
29void fqdncache_purgelru(void *);
30void fqdncacheAddEntryFromHosts(char *addr, SBufList &hostnames);
31
32const char *fqdncache_gethostbyaddr(const Ip::Address &, int flags);
33void fqdncache_nbgethostbyaddr(const Ip::Address &, FQDNH *, void *);
34
35#endif /* SQUID_FQDNCACHE_H_ */
36