Home
last modified time | relevance | path

Searched refs:ip6eh (Results 1 – 4 of 4) sorted by relevance

/dports/security/suricata/suricata-6.0.4/src/
H A Ddecode-ipv6.h115 memset(&(p)->ip6eh, 0x00, sizeof((p)->ip6eh)); \
127 #define IPV6_EXTHDR_GET_FH_NH(p) (p)->ip6eh.fh_nh
128 #define IPV6_EXTHDR_GET_FH_OFFSET(p) (p)->ip6eh.fh_offset
129 #define IPV6_EXTHDR_GET_FH_FLAG(p) (p)->ip6eh.fh_more_frags_set
130 #define IPV6_EXTHDR_GET_FH_ID(p) (p)->ip6eh.fh_id
238 #define IPV6_EXTHDR_SET_FH(p) (p)->ip6eh.fh_set = TRUE
239 #define IPV6_EXTHDR_ISSET_FH(p) (p)->ip6eh.fh_set
240 #define IPV6_EXTHDR_SET_RH(p) (p)->ip6eh.rh_set = TRUE
241 #define IPV6_EXTHDR_ISSET_RH(p) (p)->ip6eh.rh_set
H A Ddecode-ipv6.c107 p->ip6eh.fh_offset = frag_offset; in DecodeIPV6FragHeader()
109 p->ip6eh.fh_nh = *pkt; in DecodeIPV6FragHeader()
113 p->ip6eh.fh_id = SCNtohl(fh_id); in DecodeIPV6FragHeader()
116 p->ip6eh.fh_offset, in DecodeIPV6FragHeader()
118 p->ip6eh.fh_nh, in DecodeIPV6FragHeader()
119 p->ip6eh.fh_id, p->ip6eh.fh_id); in DecodeIPV6FragHeader()
128 p->ip6eh.fh_data_len = data_len; in DecodeIPV6FragHeader()
136 p->ip6eh.fh_header_offset, p->ip6eh.fh_data_offset, in DecodeIPV6FragHeader()
137 p->ip6eh.fh_data_len); in DecodeIPV6FragHeader()
449 if (p->ip6eh.fh_more_frags_set == 0 && p->ip6eh.fh_offset == 0) { in DecodeIPV6ExtHdrs()
[all …]
H A Ddefrag.c590 data_offset = p->ip6eh.fh_data_offset; in DefragInsertFrag()
591 data_len = p->ip6eh.fh_data_len; in DefragInsertFrag()
594 frag_hdr_offset = p->ip6eh.fh_header_offset; in DefragInsertFrag()
610 ip6_nh_set_offset = p->ip6eh.fh_prev_hdr_offset; in DefragInsertFrag()
H A Ddecode.h517 IPV6ExtHdrs ip6eh; member