Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:family

48  * 32-bit integer that specifies the family, e.g. AF_INET.
67 null_hdr_print(u_int family, u_int length)
71 tok2str(bsd_af_values,"Unknown",family),family);
74 tok2str(bsd_af_values,"Unknown AF %u",family));
91 u_int family;
98 memcpy((char *)&family, (char *)p, sizeof(family));
108 if ((family & 0xFFFF0000) != 0)
109 family = SWAPLONG(family);
112 null_hdr_print(family, length);
118 switch (family) {
147 null_hdr_print(family, length + NULL_HDRLEN);