Implemented the "getifindex" control message.
PR: kern/63864 Submitted by: Gleb Smirnoff
This commit is contained in:
parent
8c423a998e
commit
1164db57e4
@ -186,6 +186,13 @@ static const struct ng_cmdlist ng_iface_cmds[] = {
|
||||
NULL,
|
||||
&ng_cisco_ipaddr_type
|
||||
},
|
||||
{
|
||||
NGM_IFACE_COOKIE,
|
||||
NGM_IFACE_GET_IFINDEX,
|
||||
"getifindex",
|
||||
NULL,
|
||||
&ng_parse_uint32_type
|
||||
},
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
@ -667,6 +674,15 @@ ng_iface_rcvmsg(node_p node, item_p item, hook_p lasthook)
|
||||
break;
|
||||
}
|
||||
|
||||
case NGM_IFACE_GET_IFINDEX:
|
||||
NG_MKRESPONSE(resp, msg, sizeof(uint32_t), M_NOWAIT);
|
||||
if (resp == NULL) {
|
||||
error = ENOMEM;
|
||||
break;
|
||||
}
|
||||
*((uint32_t *)resp->data) = priv->ifp->if_index;
|
||||
break;
|
||||
|
||||
default:
|
||||
error = EINVAL;
|
||||
break;
|
||||
|
@ -69,6 +69,7 @@ enum {
|
||||
NGM_IFACE_GET_IFNAME = 1, /* returns struct ng_iface_ifname */
|
||||
NGM_IFACE_POINT2POINT,
|
||||
NGM_IFACE_BROADCAST,
|
||||
NGM_IFACE_GET_IFINDEX,
|
||||
};
|
||||
|
||||
struct ng_iface_ifname {
|
||||
|
Loading…
x
Reference in New Issue
Block a user