2014-07-24 08:53:33 -04:00
|
|
|
/* -*- Mode: C; tab-width: 4; indent-tabs-mode: t; c-basic-offset: 4 -*- */
|
|
|
|
|
/*
|
|
|
|
|
* 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 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 Street, Fifth Floor,
|
|
|
|
|
* Boston, MA 02110-1301 USA.
|
|
|
|
|
*
|
|
|
|
|
* Copyright 2013 Jiri Pirko <jiri@resnulli.us>
|
|
|
|
|
*/
|
|
|
|
|
|
all: fix up multiple-include-guard defines
Previously, src/nm-ip4-config.h, libnm/nm-ip4-config.h, and
libnm-glib/nm-ip4-config.h all used "NM_IP4_CONFIG_H" as an include
guard, which meant that nm-test-utils.h could not tell which of them
was being included (and so, eg, if you tried to include
nm-ip4-config.h in a libnm test, it would fail to compile because
nm-test-utils.h was referring to symbols in src/nm-ip4-config.h).
Fix this by changing the include guards in the non-API-stable parts of
the tree:
- libnm-glib/nm-ip4-config.h remains NM_IP4_CONFIG_H
- libnm/nm-ip4-config.h now uses __NM_IP4_CONFIG_H__
- src/nm-ip4-config.h now uses __NETWORKMANAGER_IP4_CONFIG_H__
And likewise for all other headers.
The two non-"nm"-prefixed headers, libnm/NetworkManager.h and
src/NetworkManagerUtils.h are now __NETWORKMANAGER_H__ and
__NETWORKMANAGER_UTILS_H__ respectively, which, while not entirely
consistent with the general scheme, do still mostly make sense in
isolation.
2014-08-13 14:10:11 -04:00
|
|
|
#ifndef __NM_SETTING_TEAM_H__
|
|
|
|
|
#define __NM_SETTING_TEAM_H__
|
2014-07-24 08:53:33 -04:00
|
|
|
|
2014-07-06 16:53:02 -04:00
|
|
|
#if !defined (__NETWORKMANAGER_H_INSIDE__) && !defined (NETWORKMANAGER_COMPILATION)
|
|
|
|
|
#error "Only <NetworkManager.h> can be included directly."
|
|
|
|
|
#endif
|
|
|
|
|
|
2017-03-09 13:02:20 +01:00
|
|
|
#include "nm-setting.h"
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
2017-11-02 17:13:46 +01:00
|
|
|
/**
|
|
|
|
|
* NMTeamLinkWatcherArpPingFlags:
|
|
|
|
|
* @NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_NONE: no one among the arp_ping link watcher
|
|
|
|
|
* boolean options ('validate_active', 'validate_inactive', 'send_always') is
|
|
|
|
|
* enabled (set to true).
|
|
|
|
|
* @NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_VALIDATE_ACTIVE: the arp_ping link watcher
|
|
|
|
|
* option 'validate_active' is enabled (set to true).
|
|
|
|
|
* @NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_VALIDATE_INACTIVE: the arp_ping link watcher
|
|
|
|
|
* option 'validate_inactive' is enabled (set to true).
|
|
|
|
|
* @NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_SEND_ALWAYS: the arp_ping link watcher option
|
|
|
|
|
* 'send_always' is enabled (set to true).
|
|
|
|
|
*/
|
|
|
|
|
typedef enum { /*< flags >*/
|
|
|
|
|
NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_NONE = 0, /*< skip >*/
|
|
|
|
|
NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_VALIDATE_ACTIVE = (1 << 1),
|
|
|
|
|
NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_VALIDATE_INACTIVE = (1 << 2),
|
|
|
|
|
NM_TEAM_LINK_WATCHER_ARP_PING_FLAG_SEND_ALWAYS = (1 << 3)
|
|
|
|
|
} NMTeamLinkWatcherArpPingFlags;
|
|
|
|
|
|
|
|
|
|
#define NM_TEAM_LINK_WATCHER_ETHTOOL "ethtool"
|
|
|
|
|
#define NM_TEAM_LINK_WATCHER_ARP_PING "arp_ping"
|
|
|
|
|
#define NM_TEAM_LINK_WATCHER_NSNA_PING "nsna_ping"
|
|
|
|
|
|
|
|
|
|
typedef struct NMTeamLinkWatcher NMTeamLinkWatcher;
|
|
|
|
|
|
|
|
|
|
GType nm_team_link_watcher_get_type (void);
|
|
|
|
|
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
NMTeamLinkWatcher *nm_team_link_watcher_new_ethtool (int delay_up,
|
|
|
|
|
int delay_down,
|
2017-11-02 17:13:46 +01:00
|
|
|
GError **error);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
NMTeamLinkWatcher *nm_team_link_watcher_new_nsna_ping (int init_wait,
|
|
|
|
|
int interval,
|
|
|
|
|
int missed_max,
|
2017-11-02 17:13:46 +01:00
|
|
|
const char *target_host,
|
|
|
|
|
GError **error);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
NMTeamLinkWatcher *nm_team_link_watcher_new_arp_ping (int init_wait,
|
|
|
|
|
int interval,
|
|
|
|
|
int missed_max,
|
2017-11-02 17:13:46 +01:00
|
|
|
const char *target_host,
|
|
|
|
|
const char *source_host,
|
|
|
|
|
NMTeamLinkWatcherArpPingFlags flags,
|
|
|
|
|
GError **error);
|
2018-12-05 15:26:50 +01:00
|
|
|
NM_AVAILABLE_IN_1_16
|
|
|
|
|
NMTeamLinkWatcher *nm_team_link_watcher_new_arp_ping2 (int init_wait,
|
|
|
|
|
int interval,
|
|
|
|
|
int missed_max,
|
|
|
|
|
int vlanid,
|
|
|
|
|
const char *target_host,
|
|
|
|
|
const char *source_host,
|
|
|
|
|
NMTeamLinkWatcherArpPingFlags flags,
|
|
|
|
|
GError **error);
|
2017-11-02 17:13:46 +01:00
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
void nm_team_link_watcher_ref (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
void nm_team_link_watcher_unref (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
gboolean nm_team_link_watcher_equal (NMTeamLinkWatcher *watcher, NMTeamLinkWatcher *other);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
NMTeamLinkWatcher *nm_team_link_watcher_dup (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
const char *nm_team_link_watcher_get_name (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
int nm_team_link_watcher_get_delay_up (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
int nm_team_link_watcher_get_delay_down (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
int nm_team_link_watcher_get_init_wait (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
int nm_team_link_watcher_get_interval (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
int nm_team_link_watcher_get_missed_max (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
const char *nm_team_link_watcher_get_target_host (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
const char *nm_team_link_watcher_get_source_host (NMTeamLinkWatcher *watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
NMTeamLinkWatcherArpPingFlags nm_team_link_watcher_get_flags (NMTeamLinkWatcher *watcher);
|
2018-12-05 15:26:50 +01:00
|
|
|
NM_AVAILABLE_IN_1_16
|
|
|
|
|
int nm_team_link_watcher_get_vlanid (NMTeamLinkWatcher *watcher);
|
2017-11-02 17:13:46 +01:00
|
|
|
|
2014-07-24 08:53:33 -04:00
|
|
|
#define NM_TYPE_SETTING_TEAM (nm_setting_team_get_type ())
|
|
|
|
|
#define NM_SETTING_TEAM(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), NM_TYPE_SETTING_TEAM, NMSettingTeam))
|
|
|
|
|
#define NM_SETTING_TEAM_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), NM_TYPE_SETTING_TEAM, NMSettingTeamClass))
|
|
|
|
|
#define NM_IS_SETTING_TEAM(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), NM_TYPE_SETTING_TEAM))
|
|
|
|
|
#define NM_IS_SETTING_TEAM_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), NM_TYPE_SETTING_TEAM))
|
|
|
|
|
#define NM_SETTING_TEAM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), NM_TYPE_SETTING_TEAM, NMSettingTeamClass))
|
|
|
|
|
|
|
|
|
|
#define NM_SETTING_TEAM_SETTING_NAME "team"
|
|
|
|
|
|
2017-10-12 12:02:06 +02:00
|
|
|
#define NM_SETTING_TEAM_CONFIG "config"
|
|
|
|
|
#define NM_SETTING_TEAM_NOTIFY_PEERS_COUNT "notify-peers-count"
|
|
|
|
|
#define NM_SETTING_TEAM_NOTIFY_PEERS_INTERVAL "notify-peers-interval"
|
|
|
|
|
#define NM_SETTING_TEAM_MCAST_REJOIN_COUNT "mcast-rejoin-count"
|
|
|
|
|
#define NM_SETTING_TEAM_MCAST_REJOIN_INTERVAL "mcast-rejoin-interval"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER "runner"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_HWADDR_POLICY "runner-hwaddr-policy"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_TX_HASH "runner-tx-hash"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_TX_BALANCER "runner-tx-balancer"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_TX_BALANCER_INTERVAL "runner-tx-balancer-interval"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_ACTIVE "runner-active"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_FAST_RATE "runner-fast-rate"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_SYS_PRIO "runner-sys-prio"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_MIN_PORTS "runner-min-ports"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY "runner-agg-select-policy"
|
2017-11-06 15:47:32 +01:00
|
|
|
#define NM_SETTING_TEAM_LINK_WATCHERS "link-watchers"
|
2017-10-12 12:02:06 +02:00
|
|
|
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_BROADCAST "broadcast"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_ROUNDROBIN "roundrobin"
|
2018-02-05 15:24:36 +01:00
|
|
|
#define NM_SETTING_TEAM_RUNNER_RANDOM "random"
|
2017-10-12 12:02:06 +02:00
|
|
|
#define NM_SETTING_TEAM_RUNNER_ACTIVEBACKUP "activebackup"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_LOADBALANCE "loadbalance"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_LACP "lacp"
|
2014-07-24 08:53:33 -04:00
|
|
|
|
2017-10-20 11:55:29 +02:00
|
|
|
#define NM_SETTING_TEAM_RUNNER_HWADDR_POLICY_SAME_ALL "same_all"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_HWADDR_POLICY_BY_ACTIVE "by_active"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_HWADDR_POLICY_ONLY_ACTIVE "only_active"
|
|
|
|
|
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_LACP_PRIO "lacp_prio"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_LACP_PRIO_STABLE "lacp_prio_stable"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_BANDWIDTH "bandwidth"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_COUNT "count"
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_PORT_CONFIG "port_config"
|
|
|
|
|
|
2017-11-08 18:10:27 +01:00
|
|
|
#define NM_SETTING_TEAM_NOTIFY_PEERS_COUNT_ACTIVEBACKUP_DEFAULT 1
|
|
|
|
|
#define NM_SETTING_TEAM_NOTIFY_MCAST_COUNT_ACTIVEBACKUP_DEFAULT 1
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_DEFAULT NM_SETTING_TEAM_RUNNER_ROUNDROBIN
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_HWADDR_POLICY_DEFAULT NM_SETTING_TEAM_RUNNER_HWADDR_POLICY_SAME_ALL
|
|
|
|
|
#define NM_SETTING_TEAM_RUNNER_TX_BALANCER_INTERVAL_DEFAULT 50
|
2018-01-12 18:32:47 +01:00
|
|
|
#define NM_SETTING_TEAM_RUNNER_SYS_PRIO_DEFAULT 65535
|
2017-11-08 18:10:27 +01:00
|
|
|
#define NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_DEFAULT NM_SETTING_TEAM_RUNNER_AGG_SELECT_POLICY_LACP_PRIO
|
|
|
|
|
|
2016-05-05 09:36:32 +02:00
|
|
|
/**
|
|
|
|
|
* NMSettingTeam:
|
2017-03-10 20:04:34 +01:00
|
|
|
*
|
|
|
|
|
* Teaming Settings
|
2016-05-05 09:36:32 +02:00
|
|
|
*/
|
2014-10-21 22:09:52 -04:00
|
|
|
struct _NMSettingTeam {
|
2014-07-24 08:53:33 -04:00
|
|
|
NMSetting parent;
|
2014-10-21 22:09:52 -04:00
|
|
|
};
|
2014-07-24 08:53:33 -04:00
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
NMSettingClass parent;
|
|
|
|
|
|
2014-05-15 09:55:18 -04:00
|
|
|
/*< private >*/
|
|
|
|
|
gpointer padding[4];
|
2014-07-24 08:53:33 -04:00
|
|
|
} NMSettingTeamClass;
|
|
|
|
|
|
|
|
|
|
GType nm_setting_team_get_type (void);
|
|
|
|
|
|
|
|
|
|
NMSetting * nm_setting_team_new (void);
|
|
|
|
|
|
|
|
|
|
const char * nm_setting_team_get_config (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int nm_setting_team_get_notify_peers_count (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int nm_setting_team_get_notify_peers_interval (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int nm_setting_team_get_mcast_rejoin_count (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int nm_setting_team_get_mcast_rejoin_interval (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
const char * nm_setting_team_get_runner (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
const char * nm_setting_team_get_runner_hwaddr_policy (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
const char * nm_setting_team_get_runner_tx_balancer (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int nm_setting_team_get_runner_tx_balancer_interval (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
gboolean nm_setting_team_get_runner_active (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
gboolean nm_setting_team_get_runner_fast_rate (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int nm_setting_team_get_runner_sys_prio (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
all: don't use gchar/gshort/gint/glong but C types
We commonly don't use the glib typedefs for char/short/int/long,
but their C types directly.
$ git grep '\<g\(char\|short\|int\|long\|float\|double\)\>' | wc -l
587
$ git grep '\<\(char\|short\|int\|long\|float\|double\)\>' | wc -l
21114
One could argue that using the glib typedefs is preferable in
public API (of our glib based libnm library) or where it clearly
is related to glib, like during
g_object_set (obj, PROPERTY, (gint) value, NULL);
However, that argument does not seem strong, because in practice we don't
follow that argument today, and seldomly use the glib typedefs.
Also, the style guide for this would be hard to formalize, because
"using them where clearly related to a glib" is a very loose suggestion.
Also note that glib typedefs will always just be typedefs of the
underlying C types. There is no danger of glib changing the meaning
of these typedefs (because that would be a major API break of glib).
A simple style guide is instead: don't use these typedefs.
No manual actions, I only ran the bash script:
FILES=($(git ls-files '*.[hc]'))
sed -i \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>\( [^ ]\)/\1\2/g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\> /\1 /g' \
-e 's/\<g\(char\|short\|int\|long\|float\|double\)\>/\1/g' \
"${FILES[@]}"
2018-07-11 07:40:19 +02:00
|
|
|
int nm_setting_team_get_runner_min_ports (NMSettingTeam *setting);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
const char * nm_setting_team_get_runner_agg_select_policy (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
gboolean nm_setting_team_remove_runner_tx_hash_by_value (NMSettingTeam *setting, const char *txhash);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
guint nm_setting_team_get_num_runner_tx_hash (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
2017-12-06 23:15:07 +01:00
|
|
|
const char *nm_setting_team_get_runner_tx_hash (NMSettingTeam *setting, guint idx);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
2017-12-06 23:15:07 +01:00
|
|
|
void nm_setting_team_remove_runner_tx_hash (NMSettingTeam *setting, guint idx);
|
2017-10-12 12:02:06 +02:00
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
gboolean nm_setting_team_add_runner_tx_hash (NMSettingTeam *setting, const char *txhash);
|
2017-11-06 15:47:32 +01:00
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
guint nm_setting_team_get_num_link_watchers (NMSettingTeam *setting);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
NMTeamLinkWatcher * nm_setting_team_get_link_watcher (NMSettingTeam *setting, guint idx);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
gboolean nm_setting_team_add_link_watcher (NMSettingTeam *setting,
|
|
|
|
|
NMTeamLinkWatcher *link_watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
void nm_setting_team_remove_link_watcher (NMSettingTeam *setting, guint idx);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
gboolean nm_setting_team_remove_link_watcher_by_value (NMSettingTeam *setting,
|
|
|
|
|
NMTeamLinkWatcher *link_watcher);
|
|
|
|
|
NM_AVAILABLE_IN_1_12
|
|
|
|
|
void nm_setting_team_clear_link_watchers (NMSettingTeam *setting);
|
2014-07-24 08:53:33 -04:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
all: fix up multiple-include-guard defines
Previously, src/nm-ip4-config.h, libnm/nm-ip4-config.h, and
libnm-glib/nm-ip4-config.h all used "NM_IP4_CONFIG_H" as an include
guard, which meant that nm-test-utils.h could not tell which of them
was being included (and so, eg, if you tried to include
nm-ip4-config.h in a libnm test, it would fail to compile because
nm-test-utils.h was referring to symbols in src/nm-ip4-config.h).
Fix this by changing the include guards in the non-API-stable parts of
the tree:
- libnm-glib/nm-ip4-config.h remains NM_IP4_CONFIG_H
- libnm/nm-ip4-config.h now uses __NM_IP4_CONFIG_H__
- src/nm-ip4-config.h now uses __NETWORKMANAGER_IP4_CONFIG_H__
And likewise for all other headers.
The two non-"nm"-prefixed headers, libnm/NetworkManager.h and
src/NetworkManagerUtils.h are now __NETWORKMANAGER_H__ and
__NETWORKMANAGER_UTILS_H__ respectively, which, while not entirely
consistent with the general scheme, do still mostly make sense in
isolation.
2014-08-13 14:10:11 -04:00
|
|
|
#endif /* __NM_SETTING_TEAM_H__ */
|