Lines Matching full:remaining
281 * check if the netlink message fits into the remaining bytes
283 * @arg remaining number of bytes remaining in message stream
285 int nlmsg_ok(const struct nlmsghdr *nlh, int remaining)
287 return (remaining >= (int)sizeof(struct nlmsghdr) &&
289 nlh->nlmsg_len <= remaining);
295 * @arg remaining number of bytes remaining in message stream
298 * decrements remaining by the size of the current message.
300 struct nlmsghdr *nlmsg_next(struct nlmsghdr *nlh, int *remaining)
304 *remaining -= totlen;
672 NL_DBG(4, "Returned message reference %p, %d remaining\n",