Diff for /mqtt/inc/mqtt.h between versions 1.1.2.5 and 1.2.2.1

version 1.1.2.5, 2011/12/13 09:51:35 version 1.2.2.1, 2012/04/25 16:36:25
Line 2 Line 2
 #define __MQTT_H  #define __MQTT_H
   
   
   #define API_CLIENT_SIDE
   #include <mqttapi.h>
   
   
 struct tagArgs {  struct tagArgs {
         io_sockaddr_t   addr;          io_sockaddr_t   addr;
           u_short         ka;
         mqtt_msg_t      *msg;          mqtt_msg_t      *msg;
   
           ait_val_t       ConnID;
         ait_val_t       User;          ait_val_t       User;
         ait_val_t       Pass;          ait_val_t       Pass;
   
Line 14  struct tagArgs { Line 20  struct tagArgs {
                 ait_val_t       Msg;                  ait_val_t       Msg;
         } Will;          } Will;
   
        char            Dup;        u_short         MsgID;
        char            Retain;
        char            QoS;        u_char            Dup;
        char            isFile;        u_char            Retain;
        ait_val_t       Value;        u_char            QoS;
         u_char          notClear;
 
         struct {
                 u_char            isFile;
                 ait_val_t       Value;
         };
   
         ait_val_t       Publish;          ait_val_t       Publish;
   

Removed from v.1.1.2.5  
changed lines
  Added in v.1.2.2.1


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