diff options
author | hannes <hannes> | 2005-09-29 07:37:08 +0000 |
---|---|---|
committer | hannes <hannes> | 2005-09-29 07:37:08 +0000 |
commit | f6e484ef408c9a01f19f4a924ce7725f249b55da (patch) | |
tree | 2b81307a9c950a47e1c004f625e3dd8212006363 /llc.h | |
parent | d8878f053df5026b9906b623a856aeba71026564 (diff) | |
download | tcpdump-f6e484ef408c9a01f19f4a924ce7725f249b55da.tar.gz |
rework the LLC printer:
-remove tok2str() and bittok2str() lookalikes
-print length field
-print more self-describing tokensstring
e.g. "Receiver not ready" instead of "rnr"
-add codepoint for SNA
Diffstat (limited to 'llc.h')
-rw-r--r-- | llc.h | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -18,7 +18,7 @@ * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. * - * @(#) $Header: /tcpdump/master/tcpdump/llc.h,v 1.18 2005-04-26 07:26:33 guy Exp $ (LBL) + * @(#) $Header: /tcpdump/master/tcpdump/llc.h,v 1.19 2005-09-29 07:37:08 hannes Exp $ (LBL) */ /* @@ -27,6 +27,7 @@ #define LLC_U_FMT 3 #define LLC_GSAP 1 +#define LLC_IG 1 /* Individual / Group */ #define LLC_S_FMT 1 #define LLC_U_POLL 0x10 @@ -63,6 +64,9 @@ #ifndef LLCSAP_8021B_G #define LLCSAP_8021B_G 0x03 #endif +#ifndef LLCSAP_SNA +#define LLCSAP_SNA 0x04 +#endif #ifndef LLCSAP_IP #define LLCSAP_IP 0x06 #endif |