Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:family

48  * 32-bit integer that specifies the family, e.g. AF_INET.
68 null_hdr_print(u_int family, u_int length)
72 tok2str(bsd_af_values,"Unknown",family),family);
75 tok2str(bsd_af_values,"Unknown AF %u",family));
92 u_int family;
99 memcpy((char *)&family, (char *)p, sizeof(family));
109 if ((family & 0xFFFF0000) != 0)
110 family = SWAPLONG(family);
113 null_hdr_print(family, length);
119 switch (family) {
148 null_hdr_print(family, length + NULL_HDRLEN);