Home
last modified time | relevance | path

Searched refs:ift_packet (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
H A Dtrace.c76 t->ift_packet = NULL; in iftraceinit()
122 if (t->ift_size > 0 && t->ift_size < len && t->ift_packet != NULL) { in trace()
123 free(t->ift_packet); in trace()
124 t->ift_packet = NULL; in trace()
128 if (len > 0 && t->ift_packet == NULL) { in trace()
129 t->ift_packet = (char *)malloc((size_t)len); in trace()
130 if (t->ift_packet == NULL) in trace()
134 bcopy(p, t->ift_packet, len); in trace()
255 t->ift_packet, t->ift_size); in dumptrace()
H A Dtrace.h47 char *ift_packet; /* pointer to packet */ member