diff options
author | Eliot Lear <github@ofcourseimright.com> | 2020-04-08 07:30:08 +0000 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2020-04-24 10:07:38 +0200 |
commit | 295e6678ddb02b2d183f2b3f70d91eb6e65625ad (patch) | |
tree | 8f9df8249c781100598ed426c0f62074f4aed5a4 /libnm-core/nm-setting-connection.h | |
parent | 25583de20ba0df49d9364c580011d4c75c3be8f8 (diff) | |
download | NetworkManager-295e6678ddb02b2d183f2b3f70d91eb6e65625ad.tar.gz |
dhcp: add support for MUD URL (RFC 8520)
[thaller@redhat.com: rewritten commit message]
https://tools.ietf.org/html/rfc8520
https://blog.apnic.net/2019/05/14/protecting-the-internet-of-things-with-mud/
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/issues/402
https://gitlab.freedesktop.org/NetworkManager/NetworkManager/-/merge_requests/463
Diffstat (limited to 'libnm-core/nm-setting-connection.h')
-rw-r--r-- | libnm-core/nm-setting-connection.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libnm-core/nm-setting-connection.h b/libnm-core/nm-setting-connection.h index b93e9b4d7a..36df389671 100644 --- a/libnm-core/nm-setting-connection.h +++ b/libnm-core/nm-setting-connection.h @@ -52,6 +52,7 @@ G_BEGIN_DECLS #define NM_SETTING_CONNECTION_MDNS "mdns" #define NM_SETTING_CONNECTION_LLMNR "llmnr" #define NM_SETTING_CONNECTION_WAIT_DEVICE_TIMEOUT "wait-device-timeout" +#define NM_SETTING_CONNECTION_MUD_URL "mud-url" /* Types for property values */ /** @@ -204,6 +205,8 @@ NMSettingConnectionLlmnr nm_setting_connection_get_llmnr (NMSettingConnection * NM_AVAILABLE_IN_1_20 gint32 nm_setting_connection_get_wait_device_timeout (NMSettingConnection *setting); +const char *nm_setting_connection_get_mud_url (NMSettingConnection *setting); + G_END_DECLS #endif /* __NM_SETTING_CONNECTION_H__ */ |