diff options
author | Brad Smith <brad@cvs.openbsd.org> | 1999-07-04 18:44:29 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 1999-07-04 18:44:29 +0000 |
commit | 02f5c89460eebf5fccec73d72f630200c765c1c9 (patch) | |
tree | b708ef67381d4bc3a46d1ce430d84fa4421122e8 /sys/net | |
parent | be26484d1c367b452f5ce5c041534881c745ac0d (diff) |
fix link level type codes
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/bpf.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/bpf.h b/sys/net/bpf.h index d366f9aae61..b02edb16790 100644 --- a/sys/net/bpf.h +++ b/sys/net/bpf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: bpf.h,v 1.10 1999/07/04 18:37:19 espie Exp $ */ +/* $OpenBSD: bpf.h,v 1.11 1999/07/04 18:44:28 brad Exp $ */ /* $NetBSD: bpf.h,v 1.15 1996/12/13 07:57:33 mikel Exp $ */ /* @@ -181,9 +181,9 @@ struct bpf_hdr { #define DLT_ATM_RFC1483 11 /* LLC/SNAP encapsulated atm */ #define DLT_LOOP 12 /* loopback type (af header) */ #define DLT_ENC 13 /* IPSEC enc type (af header, spi, flags) */ -#define DLT_RAW 12 /* raw IP */ -#define DLT_SLIP_BSDOS 13 /* BSD/OS Serial Line IP */ -#define DLT_PPP_BSDOS 14 /* BSD/OS Point-to-point Protocol */ +#define DLT_RAW 14 /* raw IP */ +#define DLT_SLIP_BSDOS 15 /* BSD/OS Serial Line IP */ +#define DLT_PPP_BSDOS 16 /* BSD/OS Point-to-point Protocol */ /* * The instruction encodings. |