purple: remove last accesses to PurpleAccount
[siplcs.git] / src / purple / purple-connection.c
blob04e8da6ede5cffe120780964b317be1976a87bf0
1 /**
2 * @file purple-connection.c
4 * pidgin-sipe
6 * Copyright (C) 2010-2013 SIPE Project <http://sipe.sourceforge.net/>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
23 #include "glib.h"
25 #include "connection.h"
27 #include "sipe-backend.h"
28 #include "sipe-core.h"
30 #include "purple-private.h"
32 void sipe_backend_connection_completed(struct sipe_core_public *sipe_public)
34 purple_connection_set_state(sipe_public->backend_private->gc,
35 PURPLE_CONNECTED);
38 static const guint map[SIPE_CONNECTION_ERROR_LAST] = {
39 PURPLE_CONNECTION_ERROR_NETWORK_ERROR,
40 PURPLE_CONNECTION_ERROR_INVALID_USERNAME,
41 PURPLE_CONNECTION_ERROR_INVALID_SETTINGS,
42 PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED,
43 PURPLE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE,
46 void sipe_backend_connection_error(struct sipe_core_public *sipe_public,
47 sipe_connection_error error,
48 const gchar *msg)
50 #if PURPLE_VERSION_CHECK(3,0,0)
51 purple_connection_error(
52 #else
53 purple_connection_error_reason(
54 #endif
55 sipe_public->backend_private->gc,
56 map[error],
57 msg);
60 gboolean sipe_backend_connection_is_disconnecting(struct sipe_core_public *sipe_public)
62 #if PURPLE_VERSION_CHECK(3,0,0)
63 return(purple_account_is_disconnecting(sipe_public->backend_private->account));
64 #else
65 return(sipe_public->backend_private->account->disconnecting);
66 #endif
69 gboolean sipe_backend_connection_is_valid(struct sipe_core_public *sipe_public)
71 return PURPLE_CONNECTION_IS_CONNECTED(sipe_public->backend_private->gc);
75 Local Variables:
76 mode: c
77 c-file-style: "bsd"
78 indent-tabs-mode: t
79 tab-width: 8
80 End: