Home
last modified time | relevance | path

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

/illumos-gate/usr/src/contrib/mDNSResponder/mDNSPosix/
H A DmDNSPosix.c1460 ssize_t readCount; in ProcessRoutingNotification() local
1470 readCount = read(sd, buff, sizeof buff); in ProcessRoutingNotification()
1475 … if (((char*) &pNLMsg[1] > (buff + readCount)) || // i.e. *pNLMsg extends off end of buffer in ProcessRoutingNotification()
1476 ((char*) pNLMsg + pNLMsg->nlmsg_len > (buff + readCount))) in ProcessRoutingNotification()
1481 readCount -= ((char*) pNLMsg - buff); in ProcessRoutingNotification()
1482 memmove(buff, pNLMsg, readCount); in ProcessRoutingNotification()
1486 readCount += read(sd, buff + readCount, sizeof buff - readCount); in ProcessRoutingNotification()
1506 ssize_t len = readCount - ((char*)pNLMsg - buff); in ProcessRoutingNotification()
1549 ssize_t readCount; in ProcessRoutingNotification() local
1554 readCount = read(sd, buff, sizeof buff); in ProcessRoutingNotification()
[all …]