summaryrefslogtreecommitdiff
path: root/print-ppp.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Add support for NetBSD DLT_PPP_SERIAL (PPP in HDLC-like framing, as perguy2000-09-181-1/+84
| | | | | | | RFC 1662, or Cisco point-to-point with HDLC framing, as per seciont 4.3.1 of RFC 1547; there's always an address and control octet at the beginning of these packets, but they're not necessarily 0xff 0x03), which we map to PCAP_ENCAP_PPP_HDLC.
* Expand the comment before the "#if 0"ed out code to dump the address andguy2000-09-091-1/+31
| | | | | control fields of a PPP frame, to indicate what I've found from trolling through the FreeBSD and NetBSD PPP code.
* be careful about buffer overrun. previous version made no checks.itojun2000-08-181-71/+159
|
* style pedant. buffer length check cleanup will be next.itojun2000-08-181-54/+58
|
* more detailed output in ppp/pppoe/l2tp.itojun2000-08-181-210/+698
| | | | From: Motonori Shindo <mshindo@mshindo.net>
* remove non-STDC codeassar2000-07-011-3/+1
|
* remove extra \n on unknwon ppp protocol code.itojun2000-05-281-2/+2
|
* print IPv6 packets (PPP_IPV6 == 0x0057)itojun2000-05-231-7/+29
|
* s/u_short/u_int16_t/ for KAME-origin source codesitojun2000-04-281-4/+4
|
* Add missing comma causing incorrect naming of lcpconfopts.fenner2000-01-271-4/+5
| | | | Use EXTRACT_32BITS instead of ntohl to handle alignment concerns.
* s/sprintf/snprintf/.itojun2000-01-171-2/+2
| | | | | there seem to be couple of unsafe use of strcat and strcpy - we should bring in strl{cat,cpy}.
* * print-rt6.c: make IPv6 routing header printing work with new 2292bisitojun1999-12-221-32/+32
| | | | | | | | | | | API. * print-bgp.c: improve options printing. ugly code exists for unaligned option parsing (need some fix). * const poisoning in SMB decoder. * make dump format back to original. someone may want to add an option to do ascii printing, but keep the default behavior as is for scripts used in many places. * -Wall -Werror clean checks.
* Make CHAP parser work -- initialize xfenner1999-12-151-1/+3
|
* Switch to config.h instead of passing defines in DEFS.fenner1999-11-211-1/+5
|
* make list of protocols and types global (it's used by PPPoE)assar1999-11-211-15/+35
| | | | From kuznet@ms2.inr.ac.ru
* quote backslashes in printfassar1999-11-171-4/+4
|
* HP-UX 10.20 build fix <http://www.sics.se/~assar/tcpdump_patches/13>itojun1999-10-301-2/+2
| | | | #ifdef h_errno, snprintf -> sprintf, arpa/inet.h for [hn]to[hn][sl]
* Bring in KAME IPv6 tcpdump. replaces esp/ah/isakmp decoder.itojun1999-10-301-6/+491
| | | | | | | Hope I did not break anything. Portability on IPv4-only node needs checking, I'll do this very soon. (sorry for rather jumbo commit) XXx what is _FAVOR_BSD?
* Initial revisionmcr1999-10-071-0/+168