Set of subroutines to build Netlink message. */
| 1455 | |
| 1456 | /* Set of subroutines to build Netlink message. */ |
| 1457 | static struct nlattr * |
| 1458 | nl_msg_tail(struct nlmsghdr *nlh) |
| 1459 | { |
| 1460 | return (struct nlattr *) |
| 1461 | (((uint8_t *)nlh) + NLMSG_ALIGN(nlh->nlmsg_len)); |
| 1462 | } |
| 1463 | |
| 1464 | static void |
| 1465 | nl_attr_put(struct nlmsghdr *nlh, int type, const void *data, int alen) |
no outgoing calls
no test coverage detected