Home | History | Annotate | Download | only in net

Lines Matching refs:ifa

37     struct ifaddrmsg ifa;
189 if (hdr->hdr.nlmsg_len < NLMSG_LENGTH(sizeof(hdr->ifa))) {
197 family_ = hdr->ifa.ifa_family;
198 interface_index_ = hdr->ifa.ifa_index;
199 set_address_status(AddressStatus(hdr->ifa.ifa_prefixlen,
200 hdr->ifa.ifa_flags,
201 hdr->ifa.ifa_scope));
452 hdr->hdr.nlmsg_len = NLMSG_LENGTH(sizeof(hdr->ifa));
453 hdr->ifa.ifa_family = family_;
454 hdr->ifa.ifa_prefixlen = address_status_.prefix_len;
455 hdr->ifa.ifa_flags = address_status_.flags;
456 hdr->ifa.ifa_scope = address_status_.scope;
457 hdr->ifa.ifa_index = interface_index_;