# HG changeset patch # User mikael # Date 1112790856 0 # Node ID 1fa1185346be3bed28fbcbb7ec4bfe839404a52a # Parent 39fd2f53f035f6da835ea324562195a7829b4790 [/trunk] Changeset 71 by mikael * Align comments... diff -r 39fd2f53f035 -r 1fa1185346be mcabber/libjabber/jabber.h --- a/mcabber/libjabber/jabber.h Wed Apr 06 12:25:54 2005 +0000 +++ b/mcabber/libjabber/jabber.h Wed Apr 06 12:34:16 2005 +0000 @@ -38,7 +38,7 @@ #include #include "libxode.h" -#include "connwrap.h" +#include "../connwrap/connwrap.h" #ifndef INCL_JABBER_H #define INCL_JABBER_H @@ -267,21 +267,21 @@ typedef struct jconn_struct { /* Core structure */ - pool p; /* Memory allocation pool */ - int state; /* Connection state flag */ - int cw_state; /* Low level connection state flag */ - int fd; /* Connection file descriptor */ + pool p; /* Memory allocation pool */ + int state; /* Connection state flag */ + int cw_state; /* Low level connection state flag */ + int fd; /* Connection file descriptor */ int port; int ssl; - jid user; /* User info */ - char *pass; /* User passwd */ + jid user; /* User info */ + char *pass; /* User passwd */ /* Stream stuff */ - int id; /* id counter for jab_getid() function */ - char idbuf[9]; /* temporary storage for jab_getid() */ - char *sid; /* stream id from server, for digest auth */ - XML_Parser parser; /* Parser instance */ - xmlnode current; /* Current node in parsing instance.. */ + int id; /* id counter for jab_getid() function */ + char idbuf[9]; /* temporary storage for jab_getid() */ + char *sid; /* stream id from server, for digest auth */ + XML_Parser parser; /* Parser instance */ + xmlnode current; /* Current node in parsing instance.. */ /* Event callback ptrs */ void (*on_state)(struct jconn_struct *j, int state);