OBS: updates for Ubuntu 16.04
[siplcs.git] / src / purple / purple-connection.c
blob299125fb64dfbf915a9b4b4c4c7a0f0b7ceb06be
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 #if PURPLE_VERSION_CHECK(3,0,0)
33 #else
34 #define PURPLE_CONNECTION_CONNECTED PURPLE_CONNECTED
35 #define purple_account_is_disconnecting(a) a->disconnecting
36 #define purple_connection_error(g, e, m) purple_connection_error_reason(g, e, m)
37 #endif
39 void sipe_backend_connection_completed(struct sipe_core_public *sipe_public)
41 purple_connection_set_state(sipe_public->backend_private->gc,
42 PURPLE_CONNECTION_CONNECTED);
45 static const guint map[SIPE_CONNECTION_ERROR_LAST] = {
46 PURPLE_CONNECTION_ERROR_NETWORK_ERROR,
47 PURPLE_CONNECTION_ERROR_INVALID_USERNAME,
48 PURPLE_CONNECTION_ERROR_INVALID_SETTINGS,
49 PURPLE_CONNECTION_ERROR_AUTHENTICATION_FAILED,
50 PURPLE_CONNECTION_ERROR_AUTHENTICATION_IMPOSSIBLE,
53 void sipe_backend_connection_error(struct sipe_core_public *sipe_public,
54 sipe_connection_error error,
55 const gchar *msg)
57 purple_connection_error(sipe_public->backend_private->gc,
58 map[error],
59 msg);
62 gboolean sipe_backend_connection_is_disconnecting(struct sipe_core_public *sipe_public)
64 return(purple_account_is_disconnecting(sipe_public->backend_private->account));
67 gboolean sipe_backend_connection_is_valid(struct sipe_core_public *sipe_public)
69 return PURPLE_CONNECTION_IS_CONNECTED(sipe_public->backend_private->gc);
73 Local Variables:
74 mode: c
75 c-file-style: "bsd"
76 indent-tabs-mode: t
77 tab-width: 8
78 End: