Lines Matching defs:rep_len
179 int rep_len;
188 rep_len = recv(sd, &ans, sizeof(ans), 0);
190 (rep_len < 0) || !NLMSG_OK((&ans.n), rep_len))
264 int c, rc, rep_len;
351 rep_len = recv(nl_sd, &msg, sizeof(msg), 0);
352 PRINTF("received %d bytes\n", rep_len);
354 if (rep_len < 0) {
360 !NLMSG_OK((&msg.n), rep_len)) {
368 PRINTF("nlmsghdr size=%zu, nlmsg_len=%d, rep_len=%d\n",
369 sizeof(struct nlmsghdr), msg.n.nlmsg_len, rep_len);
372 rep_len = GENLMSG_PAYLOAD(&msg.n);
376 while (len < rep_len) {