comparison libpurple/protocols/myspace/myspace.h @ 17319:4cb842e0649c

Make msim_remove_buddy() functional. It now sends the delbuddy, persist, and blocklist commands, each using msim_postprocess_outgoing(). Tested by removing a buddy, restarting Pidgin, and ensuring it did not reappear. msim_postprocess_outgoing() and msim_postprocess_outgoing_cb() now both use msim_do_postprocessing() to do the actual postprocessing -- insertion of the uid into the message. msim_postprocess_outgoing() calls msim_do_postprocessing() if the uid is immediately available (for example, from the buddy list), while msim_postprocess_outgoing_cb() calls it when the uid was looked up from the server. The new function avoids code duplication, which is important now because of the additional feature of having "<uid>" within a string replaced with the uid, i instead of adding a new integer field of the uid. msim_remove_buddy uses this to insert the uid into the "body" field.
author Jeffrey Connelly <jaconnel@calpoly.edu>
date Wed, 13 Jun 2007 22:57:54 +0000
parents e9dfd3a5d4b6
children 8c51a7920199
comparison
equal deleted inserted replaced
17318:7abd1eca3d18 17319:4cb842e0649c
169 169
170 gboolean msim_preprocess_incoming(MsimSession *session, MsimMessage *msg); 170 gboolean msim_preprocess_incoming(MsimSession *session, MsimMessage *msg);
171 171
172 gboolean msim_process(MsimSession *session, MsimMessage *msg); 172 gboolean msim_process(MsimSession *session, MsimMessage *msg);
173 173
174 MsimMessage *msim_do_postprocessing(MsimMessage *msg, gchar *uid_field_name, gchar *uid_before, guint uid);
174 void msim_postprocess_outgoing_cb(MsimSession *session, MsimMessage *userinfo, gpointer data); 175 void msim_postprocess_outgoing_cb(MsimSession *session, MsimMessage *userinfo, gpointer data);
175 gboolean msim_postprocess_outgoing(MsimSession *session, MsimMessage *msg, gchar *username, 176 gboolean msim_postprocess_outgoing(MsimSession *session, MsimMessage *msg, gchar *username,
176 gchar *uid_field_name, gchar *uid_before); 177 gchar *uid_field_name, gchar *uid_before);
177 178
178 179