mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-01-06 12:00:17 +01:00
* libnm-util/nm-setting.c: Get rid of dump virtual functions, that can happen automagically. Implement NMSettingIP4Config. Finish NMSettingWired by adding all known members. (setting_wired_verify): Implement. Finish NMSettingWireless by adding all known members. (setting_wireless_verify): Implement. * libnm-util/nm-connection.c: Register "ipv4" setting. (nm_connection_dump): Implement. Instead of requiring every NMSetting to implement dump function, we can introspect the GHashTable which is used for sending connections over dbus. * src/nm-device-802-11-wireless.c (nm_device_802_11_wireless_set_activation_ap): Take GByteArray for essid, it's really not a string. * src/nm-device.c (real_act_stage3_ip_config_start): Get information from NMSettings. Start DHCP request if setting is not passed or if it states that DHCP should be used. (real_act_stage4_get_ip4_config): If settings are provided, use them, even if it means overriding the values we got from DHCP. (real_activation_cancel_handler): Cancel DHCP transaction only if it has started, doh. (nm_device_deactivate_quickly): Ditto. * src/nm-device-interface.c (impl_device_activate): Dump the connection structure for debugging. git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@2577 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
29 lines
869 B
C
29 lines
869 B
C
#ifndef NM_CONNECTION_H
|
|
#define NM_CONNECTION_H
|
|
|
|
#include <glib.h>
|
|
#include "nm-setting.h"
|
|
|
|
typedef struct {
|
|
GHashTable *settings;
|
|
} NMConnection;
|
|
|
|
NMConnection *nm_connection_new (void);
|
|
NMConnection *nm_connection_new_from_hash (GHashTable *hash);
|
|
void nm_connection_add_setting (NMConnection *connection,
|
|
NMSetting *setting);
|
|
|
|
NMSetting *nm_connection_get_setting (NMConnection *connection,
|
|
const char *setting_name);
|
|
|
|
GHashTable *nm_connection_to_hash (NMConnection *connection);
|
|
void nm_connection_dump (NMConnection *connection);
|
|
void nm_connection_destroy (NMConnection *connection);
|
|
|
|
|
|
void nm_setting_parser_register (const char *name,
|
|
NMSettingCreateFn creator);
|
|
|
|
void nm_setting_parser_unregister (const char *name);
|
|
|
|
#endif /* NM_CONNECTION_H */
|