comparison libpurple/protocols/myspace/myspace.h @ 16723:3b5037a93807

Add initializers for reserved fields in plugin and prpl structures. Change msim_send to msim_send_raw and add an empty msim_send for later.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Fri, 04 May 2007 04:49:01 +0000
parents 1aa62f7368ca
children 58cd11fcd84f
comparison
equal deleted inserted replaced
16722:ba7d6317da76 16723:3b5037a93807
103 static gchar *str_replace(const gchar* str, const gchar *old, const gchar *new); 103 static gchar *str_replace(const gchar* str, const gchar *old, const gchar *new);
104 static GHashTable* msim_parse(gchar* msg); 104 static GHashTable* msim_parse(gchar* msg);
105 static GHashTable *msim_parse_body(const gchar *body_str); 105 static GHashTable *msim_parse_body(const gchar *body_str);
106 106
107 static void print_hash_item(gpointer key, gpointer value, gpointer user_data); 107 static void print_hash_item(gpointer key, gpointer value, gpointer user_data);
108 static gboolean msim_send(MsimSession *session, const gchar *msg); 108 static gboolean msim_send_raw(MsimSession *session, const gchar *msg);
109 static gboolean msim_send(MsimSession *session, ...);
109 110
110 static void msim_login(PurpleAccount *acct); 111 static void msim_login(PurpleAccount *acct);
111 static int msim_login_challenge(MsimSession *session, GHashTable *table); 112 static int msim_login_challenge(MsimSession *session, GHashTable *table);
112 static gchar* msim_compute_login_response(guchar nonce[2*NONCE_SIZE], 113 static gchar* msim_compute_login_response(guchar nonce[2*NONCE_SIZE],
113 gchar* email, gchar* password); 114 gchar* email, gchar* password);