Searched refs:imsg (Results 1 – 2 of 2) sorted by relevance
73 char *imsg; /* a pointer to an inbound message */ member212 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…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 */
1952 union { DNSMessage m; void *p; } imsg; // Incoming message received from wire member