X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=citadel%2Fmodules%2Fxmpp%2Fserv_xmpp.h;h=af405ea5b8b3eea933625539d2e573fcc6f2460d;hb=16f6e0e64488358e65bc28a207de9a24681f5bc6;hp=d8e29e9e1400839c7ff9f88b0f3abda97b929582;hpb=630aa1e9a38b94abe225fa52909ba8f3bb57d908;p=citadel.git diff --git a/citadel/modules/xmpp/serv_xmpp.h b/citadel/modules/xmpp/serv_xmpp.h index d8e29e9e1..af405ea5b 100644 --- a/citadel/modules/xmpp/serv_xmpp.h +++ b/citadel/modules/xmpp/serv_xmpp.h @@ -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;