コード例 #1
0
ファイル: vlan_init.c プロジェクト: hazmole/sdnwf_hostapd
static int ifconfig_down(const char *if_name)
{
	wpa_printf(MSG_DEBUG, "VLAN: Set interface %s down", if_name);
	return ifconfig_helper(if_name, 0);
}
コード例 #2
0
static int ifconfig_down(const char *if_name)
{
    return ifconfig_helper(if_name, 0);
}
コード例 #3
0
ファイル: vlan_init.c プロジェクト: hazmole/sdnwf_hostapd
static int ifconfig_up(const char *if_name)
{
	wpa_printf(MSG_DEBUG, "VLAN: Set interface %s up", if_name);
	return ifconfig_helper(if_name, 1);
}
コード例 #4
0
static int ifconfig_up(const char *if_name)
{
    return ifconfig_helper(if_name, 1);
}