aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJonny Lamb <jonnylamb@gnome.org>2010-12-07 19:10:20 +0800
committerJonny Lamb <jonnylamb@gnome.org>2011-01-26 21:30:42 +0800
commitcc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456 (patch)
treed6f69ca8723e8dc4ed54cc565bdc83c8b1a0bf8c
parent4b5a64796f740656f689d6289ad608788a85d35b (diff)
downloadgsoc2013-empathy-cc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456.tar
gsoc2013-empathy-cc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456.tar.gz
gsoc2013-empathy-cc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456.tar.bz2
gsoc2013-empathy-cc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456.tar.lz
gsoc2013-empathy-cc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456.tar.xz
gsoc2013-empathy-cc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456.tar.zst
gsoc2013-empathy-cc1fb69ca228118fcddf5f80dc1a1ac7cd4cd456.zip
server-sasl-handler: stop using GET_PRIV
Signed-off-by: Jonny Lamb <jonnylamb@gnome.org>
-rw-r--r--libempathy/empathy-server-sasl-handler.c33
1 files changed, 15 insertions, 18 deletions
diff --git a/libempathy/empathy-server-sasl-handler.c b/libempathy/empathy-server-sasl-handler.c
index 4b5a44193..3e6591624 100644
--- a/libempathy/empathy-server-sasl-handler.c
+++ b/libempathy/empathy-server-sasl-handler.c
@@ -21,9 +21,10 @@
#include <telepathy-glib/util.h>
+#include <string.h>
+
#define DEBUG_FLAG EMPATHY_DEBUG_SASL
#include "empathy-debug.h"
-#include "empathy-utils.h"
#include "empathy-keyring.h"
enum {
@@ -57,8 +58,6 @@ G_DEFINE_TYPE_WITH_CODE (EmpathyServerSASLHandler, empathy_server_sasl_handler,
G_TYPE_OBJECT,
G_IMPLEMENT_INTERFACE (G_TYPE_ASYNC_INITABLE, async_initable_iface_init));
-#define GET_PRIV(obj) EMPATHY_GET_PRIV (obj, EmpathyServerSASLHandler);
-
static const gchar *sasl_statuses[] = {
"not started",
"in progress",
@@ -77,7 +76,7 @@ sasl_status_changed_cb (TpChannel *channel,
gpointer user_data,
GObject *weak_object)
{
- EmpathyServerSASLHandlerPriv *priv = GET_PRIV (weak_object);
+ EmpathyServerSASLHandlerPriv *priv = EMPATHY_SERVER_SASL_HANDLER (weak_object)->priv;
/* buh boh */
if (status >= G_N_ELEMENTS (sasl_statuses))
@@ -102,7 +101,7 @@ static gboolean
empathy_server_sasl_handler_give_password (gpointer data)
{
EmpathyServerSASLHandler *self = data;
- EmpathyServerSASLHandlerPriv *priv = GET_PRIV (self);
+ EmpathyServerSASLHandlerPriv *priv = self->priv;
empathy_server_sasl_handler_provide_password (self,
priv->password, FALSE);
@@ -119,7 +118,7 @@ empathy_server_sasl_handler_get_password_async_cb (GObject *source,
const gchar *password;
GError *error = NULL;
- priv = GET_PRIV (user_data);
+ priv = EMPATHY_SERVER_SASL_HANDLER (user_data)->priv;
password = empathy_keyring_get_password_finish (TP_ACCOUNT (source),
result, &error);
@@ -145,7 +144,7 @@ empathy_server_sasl_handler_init_async (GAsyncInitable *initable,
gpointer user_data)
{
EmpathyServerSASLHandler *self = EMPATHY_SERVER_SASL_HANDLER (initable);
- EmpathyServerSASLHandlerPriv *priv = GET_PRIV (self);
+ EmpathyServerSASLHandlerPriv *priv = self->priv;
g_assert (priv->account != NULL);
@@ -188,11 +187,9 @@ channel_invalidated_cb (TpProxy *proxy,
static void
empathy_server_sasl_handler_constructed (GObject *object)
{
- EmpathyServerSASLHandlerPriv *priv;
+ EmpathyServerSASLHandlerPriv *priv = EMPATHY_SERVER_SASL_HANDLER (object)->priv;
GError *error = NULL;
- priv = GET_PRIV (object);
-
tp_cli_channel_interface_sasl_authentication_connect_to_sasl_status_changed (priv->channel,
sasl_status_changed_cb, NULL, NULL, object, &error);
@@ -212,7 +209,7 @@ empathy_server_sasl_handler_get_property (GObject *object,
GValue *value,
GParamSpec *pspec)
{
- EmpathyServerSASLHandlerPriv *priv = GET_PRIV (object);
+ EmpathyServerSASLHandlerPriv *priv = EMPATHY_SERVER_SASL_HANDLER (object)->priv;
switch (property_id)
{
@@ -234,7 +231,7 @@ empathy_server_sasl_handler_set_property (GObject *object,
const GValue *value,
GParamSpec *pspec)
{
- EmpathyServerSASLHandlerPriv *priv = GET_PRIV (object);
+ EmpathyServerSASLHandlerPriv *priv = EMPATHY_SERVER_SASL_HANDLER (object)->priv;
switch (property_id)
{
@@ -253,7 +250,7 @@ empathy_server_sasl_handler_set_property (GObject *object,
static void
empathy_server_sasl_handler_dispose (GObject *object)
{
- EmpathyServerSASLHandlerPriv *priv = GET_PRIV (object);
+ EmpathyServerSASLHandlerPriv *priv = EMPATHY_SERVER_SASL_HANDLER (object)->priv;
DEBUG ("%p", object);
@@ -266,7 +263,7 @@ empathy_server_sasl_handler_dispose (GObject *object)
static void
empathy_server_sasl_handler_finalize (GObject *object)
{
- EmpathyServerSASLHandlerPriv *priv = GET_PRIV (object);
+ EmpathyServerSASLHandlerPriv *priv = EMPATHY_SERVER_SASL_HANDLER (object)->priv;
DEBUG ("%p", object);
@@ -396,7 +393,7 @@ empathy_server_sasl_handler_provide_password (
g_return_if_fail (EMPATHY_IS_SERVER_SASL_HANDLER (handler));
- priv = GET_PRIV (handler);
+ priv = handler->priv;
array = g_array_sized_new (TRUE, FALSE,
sizeof (gchar), strlen (password));
@@ -427,7 +424,7 @@ empathy_server_sasl_handler_cancel (EmpathyServerSASLHandler *handler)
g_return_if_fail (EMPATHY_IS_SERVER_SASL_HANDLER (handler));
- priv = GET_PRIV (handler);
+ priv = handler->priv;
DEBUG ("Cancelling SASL mechanism...");
@@ -444,7 +441,7 @@ empathy_server_sasl_handler_get_account (EmpathyServerSASLHandler *handler)
g_return_val_if_fail (EMPATHY_IS_SERVER_SASL_HANDLER (handler), NULL);
- priv = GET_PRIV (handler);
+ priv = handler->priv;
return priv->account;
}
@@ -456,7 +453,7 @@ empathy_server_sasl_handler_has_password (EmpathyServerSASLHandler *handler)
g_return_val_if_fail (EMPATHY_IS_SERVER_SASL_HANDLER (handler), FALSE);
- priv = GET_PRIV (handler);
+ priv = handler->priv;
return (priv->password != NULL);
}