fqdncache.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1996-2023 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_SRC_FQDNCACHE_H
12 #define SQUID_SRC_FQDNCACHE_H
13 
14 #include "ip/Address.h"
15 #include "sbuf/forward.h"
16 
17 class StoreEntry;
18 namespace Dns
19 {
20 class LookupDetails;
21 
23 extern bool ResolveClientAddressesAsap;
24 }
25 
26 typedef void FQDNH(const char *, const Dns::LookupDetails &details, void *);
27 
28 void fqdncache_init(void);
29 void fqdnStats(StoreEntry *);
30 void fqdncache_restart(void);
31 void fqdncache_purgelru(void *);
32 void fqdncacheAddEntryFromHosts(char *addr, SBufList &hostnames);
33 
34 const char *fqdncache_gethostbyaddr(const Ip::Address &, int flags);
35 void fqdncache_nbgethostbyaddr(const Ip::Address &, FQDNH *, void *);
36 
37 #endif /* SQUID_SRC_FQDNCACHE_H */
38 
void fqdnStats(StoreEntry *)
Definition: fqdncache.cc:530
std::list< SBuf > SBufList
Definition: forward.h:22
void fqdncache_init(void)
Definition: fqdncache.cc:685
bool ResolveClientAddressesAsap
whether to do reverse DNS lookups for source IPs of accepted connections
Definition: fqdncache.cc:30
const char * fqdncache_gethostbyaddr(const Ip::Address &, int flags)
Definition: fqdncache.cc:481
generic DNS API
Definition: forward.h:20
void fqdncache_purgelru(void *)
Definition: fqdncache.cc:200
encapsulates DNS lookup results
Definition: LookupDetails.h:22
void fqdncache_nbgethostbyaddr(const Ip::Address &, FQDNH *, void *)
Definition: fqdncache.cc:414
void fqdncache_restart(void)
Definition: fqdncache.cc:620
void FQDNH(const char *, const Dns::LookupDetails &details, void *)
Definition: fqdncache.h:26
void fqdncacheAddEntryFromHosts(char *addr, SBufList &hostnames)
Definition: fqdncache.cc:636

 

Introduction

Documentation

Support

Miscellaneous