diff options
| author | Michael Biebl <biebl@debian.org> | 2017-01-23 23:35:34 +0100 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2017-01-23 23:35:34 +0100 |
| commit | 892c1a56bfb94fa4c0409673ca5a762d1ba67a78 (patch) | |
| tree | 8b61046eaf26867082441804828160a44f5b33c0 /src/nm-core-utils.h | |
| parent | f759d9a648636660552008595fb7b100a3fc2b64 (diff) | |
| parent | d462f64d6044349b0a4e3581cf2c97bbab7aec97 (diff) | |
Merge tag 'upstream/1.5.91' into experimental
Upstream version 1.5.91
Diffstat (limited to 'src/nm-core-utils.h')
| -rw-r--r-- | src/nm-core-utils.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/src/nm-core-utils.h b/src/nm-core-utils.h index e3aa257f..ada3f8ef 100644 --- a/src/nm-core-utils.h +++ b/src/nm-core-utils.h @@ -142,11 +142,14 @@ typedef enum { NM_MATCH_SPEC_NEG_MATCH = 2, } NMMatchSpecMatchType; -NMMatchSpecMatchType nm_match_spec_device_type (const GSList *specs, const char *device_type); -NMMatchSpecMatchType nm_match_spec_hwaddr (const GSList *specs, const char *hwaddr); -NMMatchSpecMatchType nm_match_spec_s390_subchannels (const GSList *specs, const char *subchannels); -NMMatchSpecMatchType nm_match_spec_interface_name (const GSList *specs, const char *interface_name); -NMMatchSpecMatchType nm_match_spec_match_config (const GSList *specs, guint nm_version, const char *env); +NMMatchSpecMatchType nm_match_spec_device (const GSList *specs, + const char *interface_name, + const char *device_type, + const char *hwaddr, + const char *s390_subchannels); +NMMatchSpecMatchType nm_match_spec_config (const GSList *specs, + guint nm_version, + const char *env); GSList *nm_match_spec_split (const char *value); char *nm_match_spec_join (GSList *specs); |