Home | History | Annotate | Download | only in android-clat

Lines Matching refs:nl_msg

55 struct nl_msg *nlmsg_alloc_generic(uint16_t type, uint16_t flags, void *payload_struct, size_t payload_len) {
56 struct nl_msg *msg;
63 if ((sizeof(struct nl_msg) + payload_len) > msg->nm_size) {
83 struct nl_msg *nlmsg_alloc_ifaddr(uint16_t type, uint16_t flags, struct ifaddrmsg *ifa) {
93 struct nl_msg *nlmsg_alloc_ifinfo(uint16_t type, uint16_t flags, struct ifinfomsg *ifi) {
103 struct nl_msg *nlmsg_alloc_rtmsg(uint16_t type, uint16_t flags, struct rtmsg *rt) {
127 void send_netlink_msg(struct nl_msg *msg, struct nl_cb *callbacks) {
158 struct nl_msg *msg = NULL;
170 * send a nl_msg and return an int status - only supports OK/ERROR responses
173 int netlink_sendrecv(struct nl_msg *msg) {