NetworkManager r4373 - in trunk: . src/vpn-manager
- From: dcbw svn gnome org
- To: svn-commits-list gnome org
- Subject: NetworkManager r4373 - in trunk: . src/vpn-manager
- Date: Mon, 8 Dec 2008 15:20:49 +0000 (UTC)
Author: dcbw
Date: Mon Dec 8 15:20:49 2008
New Revision: 4373
URL: http://svn.gnome.org/viewvc/NetworkManager?rev=4373&view=rev
Log:
2008-12-08 Dan Williams <dcbw redhat com>
* src/vpn-manager/nm-vpn-connection.c
- (plugin_state_changed): clear secrets before setting the connection
state to FAILED, since doing so may destroy the connection itself,
since the NMVPNService owning this NMVPNConnection will unref it
when the NMVPNConnection is failed or stopped
Modified:
trunk/ChangeLog
trunk/src/vpn-manager/nm-vpn-connection.c
Modified: trunk/src/vpn-manager/nm-vpn-connection.c
==============================================================================
--- trunk/src/vpn-manager/nm-vpn-connection.c (original)
+++ trunk/src/vpn-manager/nm-vpn-connection.c Mon Dec 8 15:20:49 2008
@@ -280,39 +280,38 @@
static void
plugin_state_changed (DBusGProxy *proxy,
- NMVPNServiceState state,
- gpointer user_data)
+ NMVPNServiceState state,
+ gpointer user_data)
{
NMVPNConnection *connection = NM_VPN_CONNECTION (user_data);
NMVPNConnectionPrivate *priv = NM_VPN_CONNECTION_GET_PRIVATE (connection);
nm_info ("VPN plugin state changed: %d", state);
- if (state != NM_VPN_SERVICE_STATE_STOPPED)
- return;
-
- switch (nm_vpn_connection_get_vpn_state (connection)) {
- case NM_VPN_CONNECTION_STATE_PREPARE:
- case NM_VPN_CONNECTION_STATE_NEED_AUTH:
- case NM_VPN_CONNECTION_STATE_CONNECT:
- case NM_VPN_CONNECTION_STATE_IP_CONFIG_GET:
- case NM_VPN_CONNECTION_STATE_ACTIVATED:
- nm_info ("VPN plugin state change reason: %d", priv->failure_reason);
- nm_vpn_connection_set_vpn_state (connection,
- NM_VPN_CONNECTION_STATE_FAILED,
- priv->failure_reason);
-
- /* Reset the failure reason */
- priv->failure_reason = NM_VPN_CONNECTION_STATE_REASON_UNKNOWN;
- break;
- default:
- break;
+ if (state == NM_VPN_SERVICE_STATE_STOPPED) {
+ /* Clear connection secrets to ensure secrets get requested each time the
+ * connection is activated.
+ */
+ nm_connection_clear_secrets (priv->connection);
+
+ switch (nm_vpn_connection_get_vpn_state (connection)) {
+ case NM_VPN_CONNECTION_STATE_PREPARE:
+ case NM_VPN_CONNECTION_STATE_NEED_AUTH:
+ case NM_VPN_CONNECTION_STATE_CONNECT:
+ case NM_VPN_CONNECTION_STATE_IP_CONFIG_GET:
+ case NM_VPN_CONNECTION_STATE_ACTIVATED:
+ nm_info ("VPN plugin state change reason: %d", priv->failure_reason);
+ nm_vpn_connection_set_vpn_state (connection,
+ NM_VPN_CONNECTION_STATE_FAILED,
+ priv->failure_reason);
+
+ /* Reset the failure reason */
+ priv->failure_reason = NM_VPN_CONNECTION_STATE_REASON_UNKNOWN;
+ break;
+ default:
+ break;
+ }
}
-
- /* Clear connection secrets too so the auth dialogs get asked
- * for them next time.
- */
- nm_connection_clear_secrets (priv->connection);
}
static const char *
@@ -631,8 +630,8 @@
/* StateChanged signal */
dbus_g_proxy_add_signal (priv->proxy, "StateChanged", G_TYPE_UINT, G_TYPE_INVALID);
dbus_g_proxy_connect_signal (priv->proxy, "StateChanged",
- G_CALLBACK (plugin_state_changed),
- connection, NULL);
+ G_CALLBACK (plugin_state_changed),
+ connection, NULL);
nm_vpn_connection_set_vpn_state (connection,
NM_VPN_CONNECTION_STATE_NEED_AUTH,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]