Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/cmd-inet/usr.lib/in.ripngd/
H A Dtrace.c74 t->ift_packet = NULL; in iftraceinit()
120 if (t->ift_size > 0 && t->ift_size < len && t->ift_packet != NULL) { in trace()
121 free(t->ift_packet); in trace()
122 t->ift_packet = NULL; in trace()
126 if (len > 0 && t->ift_packet == NULL) { in trace()
127 t->ift_packet = (char *)malloc((size_t)len); in trace()
128 if (t->ift_packet == NULL) in trace()
132 bcopy(p, t->ift_packet, len); in trace()
253 t->ift_packet, t->ift_size); in dumptrace()
H A Dtrace.h45 char *ift_packet; /* pointer to packet */ member