[tcpdump-workers] Automatic report from sources (tcpdump libpcap htdocs) between 17.11.2005 - 06.12.2005 GMT

2005-12-05 Thread Automatic cvs log generator /tcpdump/bin/makelog
CVS log entries from 17.11.2005 (Thu) 10:07:09 - 06.12.2005 (Tue) 05:04:12 GMT = Summary by authors = = Log entries ===

Re: [tcpdump-workers] 答复: Spam:Re: [tc pdump-workers] libpcap for PPP raw data problem

2005-12-05 Thread Guy Harris
On Dec 5, 2005, at 6:55 PM, BinaryChen(TP/SH) wrote: It is framed with escape characters. I.e., there are flag bytes (0x7e) at the beginning and end of each frame, and bytes with the values 0x7e and 0x7d are represented as 0x7d 0x5e and 0x7d 0x5d in the byte stream? If so, then, yes, PP

[tcpdump-workers] 答复: Spam:Re: [tcpdump-workers] libpcap for PPP raw data problem

2005-12-05 Thread BinaryChen\(TP/SH\)
It is framed with escape characters. The ethereal can recognize the PPPdump format? Otherwise what should I do next? Binary Chen From: [EMAIL PROTECTED] 代表 Guy Harris Sent: 2005-12-6 (星期二) 10:00 To: tcpdump-workers@lists.tcpdump.org Subject: Spam:Re: [tcpdump-

Re: [tcpdump-workers] libpcap for PPP raw data problem

2005-12-05 Thread Guy Harris
(Sent from the wrong address, so it bounced; resent from the right address, with extra crud added so that it doesn't get bounced again as a duplicate message.) On Dec 4, 2005, at 8:37 PM, BinaryChen(TP/SH) wrote: I have captured some raw PPP data from serial driver, and I want use libpcap

Re: [tcpdump-workers] gettimeofday() on Win32

2005-12-05 Thread Guy Harris
(Blah blah blah wrong from address blah blah blah defeat duplicate message detection blah blah blah blah.) On Dec 3, 2005, at 8:07 AM, Gisle Vanem wrote: The recent (?) -G option requires gettimeofday() which isn't available on Win32. Attached is a patch to util.c which adds this function.

Re: [tcpdump-workers] [patch] print-dccp.c, dccp.h

2005-12-05 Thread Guy Harris
On Dec 3, 2005, at 8:51 AM, Gisle Vanem wrote: The print-dccp.c file is rather gcc centric in the way it uses declarations after code statements. E.g.: TCHECK2(*dh_ack,8); u_int32_t ack_low = dh_ack->dccph_ack_nr_low; Which doesn't work in MSVC7. The attached patch also removes the dccp_

:Re: [tcpdump-workers] libpcap for PPP raw data problem

2005-12-05 Thread Hannes Gredler
from the manpage: NAME text2pcap - Generate a capture file from an ASCII hexdump of packets SYNOPSYS text2pcap [ -h ] [ -d ] [ -q ] [ -o hex|oct ] [ -l typenum ] [ -e l3pid ] [ -i proto ] [ -m max-packet ] [ -u srcport,destport ] [ -T srcport,destport ] [ -s srcport,destp

Re: [tcpdump-workers] gettimeofday() on Win32

2005-12-05 Thread Hannes Gredler
pls ignore prev. comment -> brain fart - checked in your patch - /hannes Gisle Vanem wrote: The recent (?) -G option requires gettimeofday() which isn't available on Win32. Attached is a patch to util.c which adds this function. --gv --- tcpdump-2005.12.03/util.cThu Jun 16 00:19:38 2005 ++

[tcpdump-workers] 答复: Spam:Re: [tcpdump-workers] libpcap for PPP raw data problem

2005-12-05 Thread BinaryChen\(TP/SH\)
Hi Hannes, Have you used the text2pcap? What function does it provide? In its man page, it support change hexdump result to pcap format, but in ASCII format. I wonder to know what is hexdump'ed? The raw data or ... Thanks a lot. Binary Chen From: [EMAIL PRO

Re: [tcpdump-workers] gettimeofday() on Win32

2005-12-05 Thread Hannes Gredler
would'nt it make sense to guard your private gettimeofday() function with #if defined(_MSC_VER) || defined(_MSC_EXTENSIONS) || defined(__WATCOMC__) /hannes Gisle Vanem wrote: The recent (?) -G option requires gettimeofday() which isn't available on Win32. Attached is a patch to util.c which add

Re: [tcpdump-workers] libpcap for PPP raw data problem

2005-12-05 Thread Hannes Gredler
libpcap does not do what you want it to do ... however you may want to look at the text2pcap utility that is bundled with ethereal. /hannes BinaryChen(TP/SH) wrote: Hi, I have captured some raw PPP data from serial driver, and I want use libpcap to convert to pcap file format so the ethereal