]> git.ipfire.org Git - thirdparty/squid.git/blame_incremental - src/dns/forward.h
Docs: Copyright updates for 2018 (#114)
[thirdparty/squid.git] / src / dns / forward.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 1996-2018 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#ifndef _SQUID_SRC_DNS_FORWARD_H
10#define _SQUID_SRC_DNS_FORWARD_H
11
12#include "ip/forward.h"
13
14class rfc1035_rr;
15
16typedef void IDNSCB(void *cbdata, const rfc1035_rr *answer, const int recordsInAnswer, const char *error, bool lastAnswer);
17
18/// generic DNS API
19namespace Dns
20{
21
22class LookupDetails;
23
24void Init(void);
25
26} // namespace Dns
27
28// internal DNS client API
29void idnsALookup(const char *, IDNSCB *, void *);
30void idnsPTRLookup(const Ip::Address &, IDNSCB *, void *);
31
32#endif /* _SQUID_SRC_DNS_FORWARD_H */
33