Diff for /mqtt/inc/mqttd.h between versions 1.2.2.10 and 1.2.2.13

version 1.2.2.10, 2012/05/05 14:51:01 version 1.2.2.13, 2012/06/26 08:05:58
Line 42  struct tagSession { Line 42  struct tagSession {
                 char                    *msg;                  char                    *msg;
         } sess_will;          } sess_will;
   
        /* session subscriptions */        /* session subscriptions & send pubs */
         SLIST_HEAD(tStore, tagStore)    sess_subscr;          SLIST_HEAD(tStore, tagStore)    sess_subscr;
   
         TAILQ_ENTRY(tagSession)         sess_node;          TAILQ_ENTRY(tagSession)         sess_node;
 };  };
 typedef TAILQ_HEAD(, tagSession) sessions_t;  typedef TAILQ_HEAD(, tagSession) sessions_t;
   
 struct tagPub {  
         ait_val_t               pub_name;  
         mqtt_msg_t              pub_packet;  
   
         TAILQ_ENTRY(tagPub)     pub_node;  
 };  
 typedef TAILQ_HEAD(, tagPub)    pubs_t;  
   
   
 extern sessions_t Sessions;  extern sessions_t Sessions;
 extern pubs_t Pubs;  
 extern sched_root_task_t *root;  extern sched_root_task_t *root;
 extern cfg_root_t cfg;  extern cfg_root_t cfg;
   

Removed from v.1.2.2.10  
changed lines
  Added in v.1.2.2.13


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>