Changeset 1028
- Timestamp:
- 04/14/07 14:53:28 (1 year ago)
- Files:
-
- trunk/pdns/pdns/Makefile-recursor (modified) (1 diff)
- trunk/pdns/pdns/dist-recursor (modified) (1 diff)
- trunk/pdns/pdns/dnswasher.cc (modified) (1 diff)
- trunk/pdns/pdns/pdns_recursor.cc (modified) (1 diff)
- trunk/pdns/pdns/rec_control.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/pdns/pdns/Makefile-recursor
r999 r1028 14 14 arguments.o lwres.o pdns_recursor.o recursor_cache.o dnsparser.o \ 15 15 dnswriter.o dnsrecords.o rcpgenerator.o base64.o zoneparser-tng.o \ 16 rec_channel.o rec_channel_rec.o malloc.o selectmplexer.o 16 rec_channel.o rec_channel_rec.o malloc.o selectmplexer.o sillyrecords.o 17 17 18 18 REC_CONTROL_OBJECTS=rec_channel.o rec_control.o arguments.o trunk/pdns/pdns/dist-recursor
r929 r1028 14 14 selectmplexer.cc epollmplexer.cc kqueuemplexer.cc portsmplexer.cc pdns_hw.cc \ 15 15 win32_mtasker.cc win32_rec_channel.cc win32_logger.cc ntservice.cc \ 16 recursorservice.cc "16 recursorservice.cc sillyrecords.cc" 17 17 18 18 cd docs trunk/pdns/pdns/dnswasher.cc
r862 r1028 47 47 try 48 48 { 49 if(argc!=3) { 50 cerr<<"Syntax: dnswasher infile outfile\n"; 51 exit(1); 52 } 49 53 PcapPacketReader pr(argv[1]); 50 54 PcapPacketWriter pw(argv[2], pr); trunk/pdns/pdns/pdns_recursor.cc
r988 r1028 813 813 return tmp; 814 814 } 815 816 #include <sys/syscall.h>817 #include <unistd.h>818 #include <asm/unistd.h>819 #include <sys/types.h>820 #include <sys/socket.h>821 822 #if 0823 extern "C" {824 ssize_t recvfrom(int s, void *buf, size_t len, int flags, struct sockaddr *from, socklen_t *fromlen)825 {826 #ifdef __NR_socketcall827 return syscall(__NR_socketcall, 12, &s);828 #else829 return syscall(__NR_recvfrom, s, buf, len, flags, from, fromlen);830 #endif831 }832 }833 #endif834 815 835 816 void handleNewUDPQuestion(int fd, boost::any& var) trunk/pdns/pdns/rec_control.cc
r818 r1028 20 20 #include "ahuexception.hh" 21 21 #include "arguments.hh" 22 #include "config.h" 22 23 23 24 using namespace std;