• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/tcpdump-4.4.0/

Lines Matching refs:u_int

56 aodv_extension(const struct aodv_ext *ep, u_int length)
58 u_int i;
67 i = min(length, (u_int)(snapend - (u_char *)ep));
85 aodv_rreq(const union aodv *ap, const u_char *dat, u_int length)
87 u_int i;
93 i = min(length, (u_int)(snapend - dat));
117 aodv_rrep(const union aodv *ap, const u_char *dat, u_int length)
119 u_int i;
125 i = min(length, (u_int)(snapend - dat));
146 aodv_rerr(const union aodv *ap, const u_char *dat, u_int length)
148 u_int i;
156 i = min(length, (u_int)(snapend - dat));
179 aodv_v6_rreq(const union aodv *ap, const u_char *dat, u_int length)
181 aodv_v6_rreq(const union aodv *ap _U_, const u_char *dat _U_, u_int length)
185 u_int i;
191 i = min(length, (u_int)(snapend - dat));
219 aodv_v6_rrep(const union aodv *ap, const u_char *dat, u_int length)
221 aodv_v6_rrep(const union aodv *ap _U_, const u_char *dat _U_, u_int length)
225 u_int i;
231 i = min(length, (u_int)(snapend - dat));
256 aodv_v6_rerr(const union aodv *ap, u_int length)
258 aodv_v6_rerr(const union aodv *ap _U_, u_int length)
286 aodv_v6_draft_01_rreq(const union aodv *ap, const u_char *dat, u_int length)
289 u_int length)
293 u_int i;
299 i = min(length, (u_int)(snapend - dat));
327 aodv_v6_draft_01_rrep(const union aodv *ap, const u_char *dat, u_int length)
330 u_int length)
334 u_int i;
340 i = min(length, (u_int)(snapend - dat));
365 aodv_v6_draft_01_rerr(const union aodv *ap, u_int length)
367 aodv_v6_draft_01_rerr(const union aodv *ap _U_, u_int length)
394 aodv_print(const u_char *dat, u_int length, int is_ip6)
403 if (min(length, (u_int)(snapend - dat)) < sizeof(ap->rrep_ack)) {