]> git.ipfire.org Git - thirdparty/squid.git/blame - include/rfc1035.h
Make DNS parser more forgiving, allowing for gaps in the domainname
[thirdparty/squid.git] / include / rfc1035.h
CommitLineData
7b724b86 1/*
ddfcbc22 2 * $Id: rfc1035.h,v 1.11 2005/04/18 21:52:40 hno Exp $
7b724b86 3 *
01efce4b 4 * AUTHOR: Duane Wessels
7b724b86 5 *
2b6662ba 6 * SQUID Web Proxy Cache http://www.squid-cache.org/
7 * ----------------------------------------------------------
7b724b86 8 *
2b6662ba 9 * Squid is the result of efforts by numerous individuals from
10 * the Internet community; see the CONTRIBUTORS file for full
11 * details. Many organizations have provided support for Squid's
12 * development; see the SPONSORS file for full details. Squid is
13 * Copyrighted (C) 2001 by the Regents of the University of
14 * California; see the COPYRIGHT file for full details. Squid
15 * incorporates software developed and/or copyrighted by other
16 * sources; see the CREDITS file for full details.
7b724b86 17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111, USA.
31 *
32 */
33
b5638623 34#ifndef SQUID_RFC1035_H
35#define SQUID_RFC1035_H
7b724b86 36
37#include "config.h"
38#if HAVE_SYS_TYPES_H
39#include <sys/types.h>
40#endif
41#if HAVE_NETINET_IN_H
42#include <netinet/in.h>
43#endif
44#if HAVE_ARPA_INET_H
45#include <arpa/inet.h>
46#endif
47
48/* rfc1035 - DNS */
40aa4055 49#define RFC1035_MAXHOSTNAMESZ 250
7b724b86 50typedef struct _rfc1035_rr rfc1035_rr;
51struct _rfc1035_rr {
52 char name[RFC1035_MAXHOSTNAMESZ];
53 unsigned short type;
29b8d8d6 54 unsigned short _class;
7b724b86 55 unsigned int ttl;
56 unsigned short rdlength;
57 char *rdata;
58};
e6ccf245 59SQUIDCEXTERN unsigned short rfc1035BuildAQuery(const char *hostname,
7b724b86 60 char *buf,
61 size_t * szp);
ddfcbc22 62SQUIDCEXTERN unsigned short rfc1035BuildPTRQuery(const struct IN_ADDR,
34a46fef 63 char *buf,
64 size_t * szp);
e6ccf245 65SQUIDCEXTERN unsigned short rfc1035RetryQuery(char *);
66SQUIDCEXTERN int rfc1035AnswersUnpack(const char *buf,
7b724b86 67 size_t sz,
68 rfc1035_rr ** records,
69 unsigned short *id);
e6ccf245 70SQUIDCEXTERN void rfc1035RRDestroy(rfc1035_rr * rr, int n);
71SQUIDCEXTERN int rfc1035_errno;
72SQUIDCEXTERN const char *rfc1035_error_message;
7b724b86 73
74#define RFC1035_TYPE_A 1
34a46fef 75#define RFC1035_TYPE_PTR 12
7b724b86 76#define RFC1035_CLASS_IN 1
77
b5638623 78#endif /* SQUID_RFC1035_H */