Changeset 501
- Timestamp:
- 10/01/05 20:20:46 (8 years ago)
- Location:
- trunk/pdns/pdns
- Files:
-
- 2 added
- 5 modified
-
Makefile.am (modified) (5 diffs)
-
dnsparser.cc (modified) (1 diff)
-
dnsparser.hh (modified) (1 diff)
-
dnsrecords.cc (modified) (1 diff)
-
dnsrecords.hh (modified) (1 diff)
-
rcpgenerator.cc (added)
-
rcpgenerator.hh (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/Makefile.am
r462 r501 17 17 endif 18 18 19 bin_PROGRAMS = pdns_control dnswasher dnsreplay dnsreplay_mindex19 bin_PROGRAMS = pdns_control dnswasher dnsreplay 20 20 21 EXTRA_PROGRAMS=pdns_recursor sdig pdns_control qgen dnsscope 21 EXTRA_PROGRAMS=pdns_recursor sdig pdns_control qgen dnsscope dnsreplay_mindex 22 22 23 23 pdns_server_SOURCES=dnspacket.cc nameserver.cc tcpreceiver.hh \ … … 42 42 pdns_server_INCLUDES= 43 43 44 sdig_SOURCES=sdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc 44 sdig_SOURCES=sdig.cc sstuff.hh dnsparser.cc dnsparser.hh dnsrecords.cc dnswriter.cc dnswriter.hh \ 45 misc.cc misc.hh 45 46 46 47 … … 54 55 logger.cc statbag.cc dnspcap.cc dnspcap.hh dnsparser.hh 55 56 56 dnswasher_LDFLAGS= @DYNLINKFLAGS@ 57 dnswasher_LDFLAGS= @DYNLINKFLAGS@ @THREADFLAGS@ 57 58 58 59 # unix_utility.cc … … 61 62 logger.cc statbag.cc dnspcap.cc dnspcap.hh dnsparser.cc dnsrecords.cc dnsparser.hh 62 63 63 dnsreplay_LDFLAGS= @DYNLINKFLAGS@ 64 dnsreplay_LDFLAGS= @DYNLINKFLAGS@ @THREADFLAGS@ 64 65 65 66 dnsreplay_mindex_SOURCES=dnsreplay-mindex.cc misc.cc qtype.cc anadns.hh \ 66 67 logger.cc statbag.cc dnspcap.cc dnspcap.hh dnsparser.cc dnsrecords.cc dnsparser.hh 67 68 68 dnsreplay_mindex_LDFLAGS= @DYNLINKFLAGS@ 69 dnsreplay_mindex_LDFLAGS= @DYNLINKFLAGS@ @THREADFLAGS@ 69 70 70 71 … … 73 74 logger.cc statbag.cc dnspcap.cc dnspcap.hh dnsparser.cc dnsrecords.cc 74 75 75 dnsscope_LDFLAGS= @DYNLINKFLAGS@ 76 dnsscope_LDFLAGS= @DYNLINKFLAGS@ @THREADFLAGS@ 76 77 77 78 -
trunk/pdns/pdns/dnsparser.cc
r498 r501 1 /* 2 PowerDNS Versatile Database Driven Nameserver 3 Copyright (C) 2005 PowerDNS.COM BV 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License version 2 as 7 published by the Free Software Foundation 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program; if not, write to the Free Software 16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 1 19 #include "dnsparser.hh" 2 20 #include <boost/lexical_cast.hpp> -
trunk/pdns/pdns/dnsparser.hh
r499 r501 1 /* 2 PowerDNS Versatile Database Driven Nameserver 3 Copyright (C) 2005 PowerDNS.COM BV 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License version 2 as 7 published by the Free Software Foundation 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program; if not, write to the Free Software 16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 1 19 #ifndef DNSPARSER_HH 2 20 #define DNSPARSER_HH -
trunk/pdns/pdns/dnsrecords.cc
r499 r501 1 /* 2 PowerDNS Versatile Database Driven Nameserver 3 Copyright (C) 2005 PowerDNS.COM BV 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License version 2 as 7 published by the Free Software Foundation 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program; if not, write to the Free Software 16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 1 19 #include "dnsrecords.hh" 2 3 4 20 5 21 #define boilerplate(RNAME, RTYPE) \ -
trunk/pdns/pdns/dnsrecords.hh
r499 r501 1 /* 2 PowerDNS Versatile Database Driven Nameserver 3 Copyright (C) 2005 PowerDNS.COM BV 4 5 This program is free software; you can redistribute it and/or modify 6 it under the terms of the GNU General Public License version 2 as 7 published by the Free Software Foundation 8 9 This program is distributed in the hope that it will be useful, 10 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 GNU General Public License for more details. 13 14 You should have received a copy of the GNU General Public License 15 along with this program; if not, write to the Free Software 16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 1 19 #ifndef PDNS_DNSRECORDS_HH 2 20 #define PDNS_DNSRECORDS_HH