Lines Matching defs:nh
165 struct nlmsghdr *nh;
187 nh = (struct nlmsghdr *) buff;
188 for (nh = (struct nlmsghdr *) buff; NLMSG_OK(nh, read_size); nh = (struct nlmsghdr *) NLMSG_NEXT(nh, read_size)) {
189 if (nh->nlmsg_pid != pid || nh->nlmsg_seq != seq)
191 if (nh->nlmsg_type == NLMSG_DONE) {
195 if (nh->nlmsg_type == NLMSG_ERROR) {
196 struct nlmsgerr *nlerr = (struct nlmsgerr *) NLMSG_DATA(nh);
198 if (nh->nlmsg_len < NLMSG_LENGTH(sizeof(struct nlmsgerr)))