Home | History | Annotate | Download | only in tests-m32

Lines Matching refs:nlh

43 	struct nlmsghdr nlh = {
44 .nlmsg_len = sizeof(nlh),
48 nlh.nlmsg_type = NFNL_SUBSYS_NFT_COMPAT << 8 | NFNL_MSG_COMPAT_GET;
49 rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
54 fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc));
56 nlh.nlmsg_type = NFNL_SUBSYS_NFT_COMPAT << 8 | 0xff;
57 rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
62 fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc));
69 struct nlmsghdr nlh = {
70 .nlmsg_len = sizeof(nlh),
73 nlh.nlmsg_type = NFNL_SUBSYS_NFT_COMPAT << 8 | NFNL_MSG_COMPAT_GET;
74 nlh.nlmsg_flags = NLM_F_REQUEST | NLM_F_DUMP;
75 rc = sendto(fd, &nlh, nlh.nlmsg_len, MSG_DONTWAIT, NULL, 0);
80 fd, nlh.nlmsg_len, nlh.nlmsg_len, sprintrc(rc));