changeset 56:1fa1185346be

[/trunk] Changeset 71 by mikael * Align comments...
author mikael
date Wed, 06 Apr 2005 12:34:16 +0000
parents 39fd2f53f035
children f381236239a4
files mcabber/libjabber/jabber.h
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- 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 <time.h>
 
 #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);