• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/contrib/tcpdump/

Lines Matching defs:opt

170             const u_char *opt _U_, u_int opt_len _U_, u_char flags _U_)
177 const u_char *opt, u_int opt_len, u_char flags)
179 const struct mp_capable *mpc = (const struct mp_capable *) opt;
201 const u_char *opt, u_int opt_len, u_char flags)
203 const struct mp_join *mpj = (const struct mp_join *) opt;
241 const u_char *opt, u_int opt_len, u_char flags)
243 const struct mp_dss *mdss = (const struct mp_dss *) opt;
255 opt += 4;
267 ND_PRINT((ndo, "%" PRIu64, EXTRACT_64BITS(opt)));
268 opt += 8;
273 ND_PRINT((ndo, "%u", EXTRACT_32BITS(opt)));
274 opt += 4;
292 ND_PRINT((ndo, "%" PRIu64, EXTRACT_64BITS(opt)));
293 opt += 8;
298 ND_PRINT((ndo, "%u", EXTRACT_32BITS(opt)));
299 opt += 4;
304 ND_PRINT((ndo, " subseq %u", EXTRACT_32BITS(opt)));
305 opt += 4;
309 ND_PRINT((ndo, " len %u", EXTRACT_16BITS(opt)));
310 opt += 2;
319 ND_PRINT((ndo, " csum 0x%x", EXTRACT_16BITS(opt)));
330 const u_char *opt, u_int opt_len, u_char flags _U_)
332 const struct mp_add_addr *add_addr = (const struct mp_add_addr *) opt;
360 const u_char *opt, u_int opt_len, u_char flags _U_)
362 const struct mp_remove_addr *remove_addr = (const struct mp_remove_addr *) opt;
377 const u_char *opt, u_int opt_len, u_char flags _U_)
379 const struct mp_prio *mpp = (const struct mp_prio *) opt;
396 const u_char *opt, u_int opt_len, u_char flags _U_)
401 ND_PRINT((ndo, " seq %" PRIu64, EXTRACT_64BITS(opt + 4)));
407 const u_char *opt, u_int opt_len, u_char flags _U_)
412 ND_PRINT((ndo, " key 0x%" PRIx64, EXTRACT_64BITS(opt + 4)));
435 const struct mptcp_option *opt;
441 opt = (const struct mptcp_option *) cp;
442 subtype = min(MPTCP_OPT_SUBTYPE(opt->sub_etc), MPTCP_SUB_FCLOSE + 1);