~ubuntu-branches/ubuntu/oneiric/network-manager/oneiric

« back to all changes in this revision

Viewing changes to libnm-glib/nm-vpn-plugin-ui-interface.h

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre
  • Date: 2011-07-25 20:01:12 UTC
  • mfrom: (1.1.48 upstream)
  • Revision ID: james.westby@ubuntu.com-20110725200112-iwxhtsy6hko0ffkt
Tags: 0.8.9997+git.20110721t045648.36db194-0ubuntu1
* upstream snapshot 2011-07-21 04:56:48 (GMT)
  + 36db194ae95e35cc7b8f431ab984780dea24656d
  - libnm-util: default to allowing v6 connections to fail (set to optional)
* debian/patches/ipv6-dont-block-ipv4.patch: don't block waiting for IPv6 to
  apply IPv4 connection settings.
* debian/libnm-glib4.symbols: add new nm_client_get_device_by_iface symbol.
* debian/libnm-util2.symbols: add new symbols:
  - nm_setting_wired_get_mac_address_blacklist
  - nm_setting_wireless_get_mac_address_blacklist

Show diffs side-by-side

added added

removed removed

Lines of Context:
111
111
         */
112
112
        char * (*get_suggested_name) (NMVpnPluginUiInterface *iface, NMConnection *connection);
113
113
 
114
 
        /* Called when the user has chosen to remove the connection (for user
115
 
         * connections only; system connections are handled by the system
116
 
         * settings service).  Should clear out any VPN-specific secrets or data
117
 
         * related to the connection.
118
 
         */
 
114
        /* Deprecated and no longer used */
119
115
        gboolean (*delete_connection) (NMVpnPluginUiInterface *iface, NMConnection *connection, GError **error);
120
116
 
121
117
        /* Padding for future expansion */
147
143
char *nm_vpn_plugin_ui_interface_get_suggested_name (NMVpnPluginUiInterface *iface,
148
144
                                                     NMConnection *connection);
149
145
 
 
146
/* Deprecated and no longer used */
150
147
gboolean nm_vpn_plugin_ui_interface_delete_connection (NMVpnPluginUiInterface *iface,
151
148
                                                       NMConnection *connection,
152
149
                                                       GError **error);
178
175
                                       NMConnection *connection,
179
176
                                       GError **error);
180
177
 
181
 
        /* Called when the user has chosen to save the connection (for user
182
 
         * connections only; system connections are handled by the system
183
 
         * settings service).  Should save VPN-specific connection secrets in
184
 
         * a way that the auth-dialog can read them.
185
 
         */
 
178
        /* Deprecated and no longer used */
186
179
        gboolean (*save_secrets) (NMVpnPluginUiWidgetInterface *iface,
187
180
                                  NMConnection *connection,
188
181
                                  GError **error);
200
193
                                                              NMConnection *connection,
201
194
                                                              GError **error);
202
195
 
 
196
/* Deprecated and no longer used */
203
197
gboolean nm_vpn_plugin_ui_widget_interface_save_secrets (NMVpnPluginUiWidgetInterface *iface,
204
198
                                                         NMConnection *connection,
205
199
                                                         GError **error);