mirror of
https://git.rtems.org/rtems-libbsd/
synced 2025-05-14 06:40:00 +08:00

- Update the file builder generator to handle generator specific cflags and includes. The tcpdump and libpcap have localised headers and need specific headers paths to see them. There are also module specific flags and these need to be passed to the lex and yacc generators. - Add the tcpdump support.
17 lines
287 B
C
17 lines
287 B
C
/*
|
|
* NETBIOS protocol formats
|
|
*
|
|
* @(#) $Header: /tcpdump/master/tcpdump/netbios.h,v 1.3 2002-12-11 07:13:55 guy Exp $
|
|
*/
|
|
|
|
struct p8022Hdr {
|
|
u_char dsap;
|
|
u_char ssap;
|
|
u_char flags;
|
|
};
|
|
|
|
#define p8022Size 3 /* min 802.2 header size */
|
|
|
|
#define UI 0x03 /* 802.2 flags */
|
|
|