aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/jabber/jabber.c
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2006-09-21 09:32:39 +0200
committerWilmer van der Gaast <wilmer@gaast.net>2006-09-21 09:32:39 +0200
commitdd788bb0b18684be993cc7edf1f0da6f8e36449d (patch)
tree2bd9bcc275f6445d5af4b010877af306ce8e34aa /protocols/jabber/jabber.c
parent0b4a0db448d033b8f35f32060bf261374fd81bd8 (diff)
Added enough to not make it crash on login, and it can properly receive
messages now. Just try to figure out why it doesn't get typing notifications...
Diffstat (limited to 'protocols/jabber/jabber.c')
-rw-r--r--protocols/jabber/jabber.c20
1 files changed, 18 insertions, 2 deletions
diff --git a/protocols/jabber/jabber.c b/protocols/jabber/jabber.c
index cc7bac3d..84d7e366 100644
--- a/protocols/jabber/jabber.c
+++ b/protocols/jabber/jabber.c
@@ -111,6 +111,22 @@ static int jabber_send_im( struct gaim_connection *gc, char *who, char *message,
return 0;
}
+static GList *jabber_away_states( struct gaim_connection *gc )
+{
+ GList *l = NULL;
+
+ l = g_list_append( l, (void*) "Online" );
+ l = g_list_append( l, (void*) "Away" );
+ l = g_list_append( l, (void*) "Extended Away" );
+ l = g_list_append( l, (void*) "Do Not Disturb" );
+
+ return( l );
+}
+
+static void jabber_set_away( struct gaim_connection *gc, char *state, char *message )
+{
+}
+
void jabber_init()
{
struct prpl *ret = g_new0(struct prpl, 1);
@@ -120,9 +136,9 @@ void jabber_init()
ret->acc_init = jabber_acc_init;
ret->close = jabber_close;
ret->send_im = jabber_send_im;
-// ret->away_states = jabber_away_states;
+ ret->away_states = jabber_away_states;
// ret->get_status_string = jabber_get_status_string;
-// ret->set_away = jabber_set_away;
+ ret->set_away = jabber_set_away;
// ret->set_info = jabber_set_info;
// ret->get_info = jabber_get_info;
// ret->add_buddy = jabber_add_buddy;