Lines Matching refs:nl
34 static struct mnl_socket *nl; variable
174 if (nl) in cleanup()
175 mnl_socket_close(nl); in cleanup()
195 struct mnl_socket *nl; in rtnl_route() local
244 nl = mnl_socket_open(NETLINK_ROUTE); in rtnl_route()
245 if (nl == NULL) in rtnl_route()
249 if (mnl_socket_bind(nl, 0, MNL_SOCKET_AUTOPID) < 0) in rtnl_route()
253 portid = mnl_socket_get_portid(nl); in rtnl_route()
255 if (mnl_socket_sendto(nl, nlh, nlh->nlmsg_len) < 0) in rtnl_route()
259 ret = mnl_socket_recvfrom(nl, buf, sizeof(buf)); in rtnl_route()
269 mnl_socket_close(nl); in rtnl_route()