• Home
  • Raw
  • Download

Lines Matching refs:ep

101 ahcp_time_print(netdissect_options *ndo, const u_char *cp, const u_char *ep)  in ahcp_time_print()  argument
107 if (cp + 4 != ep) in ahcp_time_print()
121 ND_TCHECK2(*cp, ep - cp); in ahcp_time_print()
129 ahcp_seconds_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_seconds_print() argument
131 if (cp + 4 != ep) in ahcp_seconds_print()
139 ND_TCHECK2(*cp, ep - cp); in ahcp_seconds_print()
147 ahcp_ipv6_addresses_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv6_addresses_print() argument
151 while (cp < ep) { in ahcp_ipv6_addresses_print()
152 if (cp + 16 > ep) in ahcp_ipv6_addresses_print()
163 ND_TCHECK2(*cp, ep - cp); in ahcp_ipv6_addresses_print()
171 ahcp_ipv4_addresses_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv4_addresses_print() argument
175 while (cp < ep) { in ahcp_ipv4_addresses_print()
176 if (cp + 4 > ep) in ahcp_ipv4_addresses_print()
187 ND_TCHECK2(*cp, ep - cp); in ahcp_ipv4_addresses_print()
195 ahcp_ipv6_prefixes_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv6_prefixes_print() argument
199 while (cp < ep) { in ahcp_ipv6_prefixes_print()
200 if (cp + 17 > ep) in ahcp_ipv6_prefixes_print()
211 ND_TCHECK2(*cp, ep - cp); in ahcp_ipv6_prefixes_print()
219 ahcp_ipv4_prefixes_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp_ipv4_prefixes_print() argument
223 while (cp < ep) { in ahcp_ipv4_prefixes_print()
224 if (cp + 5 > ep) in ahcp_ipv4_prefixes_print()
235 ND_TCHECK2(*cp, ep - cp); in ahcp_ipv4_prefixes_print()
262 ahcp1_options_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp1_options_print() argument
266 while (cp < ep) { in ahcp1_options_print()
275 if (cp + 1 > ep) in ahcp1_options_print()
280 if (cp + option_len > ep) in ahcp1_options_print()
296 ND_TCHECK2(*cp, ep - cp); in ahcp1_options_print()
303 ahcp1_body_print(netdissect_options *ndo, const u_char *cp, const u_char *ep) in ahcp1_body_print() argument
308 if (cp + AHCP1_BODY_MIN_LEN > ep) in ahcp1_body_print()
329 if (cp + body_len > ep) in ahcp1_body_print()
341 ND_TCHECK2(*cp, ep - cp); in ahcp1_body_print()
350 const u_char *ep = cp + len; in ahcp_print() local
396 ahcp1_body_print(ndo, cp, ep); in ahcp_print()
407 ND_TCHECK2(*cp, ep - cp); in ahcp_print()