blob: dfec349676fb8752f045f9bdd15c788ee1e9f0c0 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* $OpenBSD: netbios.h,v 1.3 2000/10/03 14:31:55 ho Exp $ */
/*
* NETBIOS protocol formats
*
* @(#) $Header: /home/cvs/src/usr.sbin/tcpdump/netbios.h,v 1.3 2000/10/03 14:31:55 ho 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 */
|