Tvbuffified by Heikki Vatiainen.

svn path=/trunk/; revision=3317
This commit is contained in:
Guy Harris 2001-04-17 21:25:13 +00:00
parent 4694e6b0d8
commit aa1b532612
3 changed files with 317 additions and 334 deletions

View File

@ -215,6 +215,7 @@ Heikki Vatiainen <hessu@cs.tut.fi> {
such or as the DiffServ field
COPS
SIP (Session Initiation Protocol)
BGP tvbuffification
}
Greg Hankins <gregh@twoguys.org> {

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
/* packet-bgp.c
* Definitions for BGP packet disassembly structures and routine
*
* $Id: packet-bgp.h,v 1.10 2000/12/25 05:28:40 itojun Exp $
* $Id: packet-bgp.h,v 1.11 2001/04/17 21:25:13 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -150,12 +150,6 @@ struct bgp_attr {
#define AFNUM_BANYAN 14
#define AFNUM_E164NSAP 15
#define CHECK_SIZE(x, s, l) \
do { \
if ((x) + (s) > (l)) \
return; \
} while (0)
#ifndef offsetof
#define offsetof(type, member) ((size_t)(&((type *)0)->member))
#endif