mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-02-08 21:54:05 +01:00
![James Prestwood](/assets/img/avatar_default.png)
Netconfig was the only user of sysfs but now other modules will also need it. Adding existing API for IPv6 settings, a IPv4 and IPv6 'supports' checker, and a setter for IPv4 settings.
29 lines
1.2 KiB
C
29 lines
1.2 KiB
C
/*
|
|
*
|
|
* Wireless daemon for Linux
|
|
*
|
|
* Copyright (C) 2021 Intel Corporation. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
bool sysfs_supports_ipv6_setting(const char *ifname, const char *setting);
|
|
int sysfs_write_ipv6_setting(const char *ifname, const char *setting,
|
|
const char *value);
|
|
bool sysfs_supports_ipv4_setting(const char *ifname, const char *setting);
|
|
int sysfs_write_ipv4_setting(const char *ifname, const char *setting,
|
|
const char *value);
|