Home | History | Annotate | Download | only in libpcap

Lines Matching refs:imsg

73 	char			*imsg;		/* a pointer to an inbound message */
212 if (u->imsg) { /* then if an inbound message buffer exists */
213 u->imsg = (char *)realloc(u->imsg, 1); /* and re-allocate the old large buffer into a new small one */
214 if (u->imsg == NULL) { /* oops, realloc call failed */
579 ptr = u->imsg; /* point to the start of the msg for this IOP */
580 while (ptr < (u->imsg + u->len)) {
708 if ((u->imsg = realloc(u->imsg, (u->len + len))) == NULL) /* extend the buffer for the new data */
710 memcpy((u->imsg + u->len), buf, len); /* append the new data */