diff options
author | Ian Moffett <ian@osmora.org> | 2025-09-24 20:55:49 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-09-24 20:55:49 -0400 |
commit | e42e9220a91da7f83b4754be690a67a5ef65eed0 (patch) | |
tree | cfcff1f33e9a965ce217df218d2574cd6741cf8d /src/link/if_ether.c | |
parent | e67e93cffdcf52c09005e0e50945ccd609b6354b (diff) |
link: Use 0xFD instead of 0xFD00 for protocol ID
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/link/if_ether.c')
-rw-r--r-- | src/link/if_ether.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link/if_ether.c b/src/link/if_ether.c index ba2872d..48b4f19 100644 --- a/src/link/if_ether.c +++ b/src/link/if_ether.c @@ -36,7 +36,7 @@ * Using the protocol ID 0xFD for testing, * see RFC 3692 */ -#define PROTO_ID 0xFD00 +#define PROTO_ID 0xFD /* 48-bit mask for MAC addresses */ #define MAC_MASK 0xFFFFFFFFFFFF |