]> code.citadel.org Git - citadel.git/blobdiff - citadel/modules/xmpp/serv_xmpp.h
* rather have one typedef than dozends of structs all over the source
[citadel.git] / citadel / modules / xmpp / serv_xmpp.h
index 901ad883e3b65a7d5e7168cb8813333c884c6fcd..af405ea5b8b3eea933625539d2e573fcc6f2460d 100644 (file)
@@ -18,7 +18,7 @@
  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  */
 
-struct citxmpp {                       /* Information about the current session */
+typedef struct _citxmpp {                      /* Information about the current session */
        XML_Parser xp;                  /* XML parser instance for incoming client stream */
        char server_name[256];          /* who they think we are */
        char *chardata;
@@ -45,9 +45,9 @@ struct citxmpp {                      /* Information about the current session */
 
        int bind_requested;             /* In this stanza, client is asking server to bind a resource. */
        int ping_requested;             /* In this stanza, client is pinging the server. */
-};
+} citxmpp;
 
-#define XMPP ((struct citxmpp *)CC->session_specific_data)
+#define XMPP ((citxmpp *)CC->session_specific_data)
 
 struct xmpp_event {
        struct xmpp_event *next;
@@ -82,3 +82,4 @@ void xmpp_roster_item(struct CitContext *);
 void xmpp_send_message(char *, char *);
 void xmpp_non_sasl_authenticate(char *, char *, char *, char *);
 void xmpp_massacre_roster(void);
+void xmpp_delete_old_buddies_who_no_longer_exist_from_the_client_roster(void);