Current section
Files
Jump to
Current section
Files
include/pkt_gre.hrl
%% RFC 2784 - Generic Routing Encapsulation (GRE)
-record(gre, {
c = 0 :: pkt:bit(), r = 0 :: pkt:bit(), k = 0 :: pkt:bit(), s = 0 :: pkt:bit(),
res0 = 0 :: 0..2#111111111, ver = 0 :: 0..2#111,
type = ?ETH_P_IP :: pkt:uint16_t(),
chksum = 0 :: pkt:uint16_t(), res1 = 0 :: pkt:uint16_t(),
key = 0 :: pkt:uint16_t(), sequence = 0 :: pkt:uint16_t()
}).