Changeset 956
- Timestamp:
- 02/18/07 20:47:14 (6 years ago)
- Location:
- trunk/pdns/pdns
- Files:
-
- 2 modified
-
Makefile.am (modified) (3 diffs)
-
receiver.cc (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/pdns/pdns/Makefile.am
r912 r956 20 20 21 21 22 EXTRA_PROGRAMS=pdns_recursor sdig dnspbench pdns_control qgen dnsscope dnsgram dns replay_mindex dnswasher dnsreplay dnsscan dnslog22 EXTRA_PROGRAMS=pdns_recursor sdig dnspbench pdns_control qgen dnsscope dnsgram dnsdemog dnsreplay_mindex dnswasher dnsreplay dnsscan dnslog 23 23 24 24 pdns_server_SOURCES=dnspacket.cc nameserver.cc tcpreceiver.hh \ … … 33 33 dnsproxy.hh randombackend.cc unix_utility.cc common_startup.cc \ 34 34 utility.hh iputils.hh common_startup.hh unix_semaphore.cc \ 35 backends/bind/bindbackend2.cc backends/bind/zoneparser2.cc\35 backends/bind/bindbackend2.cc \ 36 36 backends/bind/bindparser.cc backends/bind/bindlexer.c \ 37 37 backends/bind/huffman.cc backends/gsql/gsqlbackend.cc \ 38 38 backends/gsql/gsqlbackend.hh backends/gsql/ssql.hh \ 39 sillyrecords.cc backends/bind/bindbackend.cc base64.cc \ 40 base64.hh 39 sillyrecords.cc base64.cc \ 40 base64.hh zoneparser-tng.cc dnsrecords.cc dnswriter.cc \ 41 rcpgenerator.cc dnsparser.cc 41 42 42 43 # … … 103 104 104 105 106 dnsdemog_SOURCES=dnsdemog.cc misc.cc unix_utility.cc qtype.cc \ 107 logger.cc statbag.cc dnspcap.cc dnspcap.hh dnsparser.cc dnsrecords.cc \ 108 base64.cc base64.hh dnswriter.cc dnswriter.hh rcpgenerator.cc rcpgenerator.hh \ 109 utility.hh dnsparser.hh 110 111 105 112 106 113 -
trunk/pdns/pdns/receiver.cc
r872 r956 61 61 #include "utility.hh" 62 62 #include "common_startup.hh" 63 #include "dnsrecords.hh" 63 64 64 65 time_t s_starttime; … … 387 388 int main(int argc, char **argv) 388 389 { 390 reportAllTypes(); // init MOADNSParser 391 389 392 s_programname="pdns"; 390 393 s_starttime=time(0);