Annotation of mqtt/inc/mqtt.h, revision 1.1.2.4

1.1.2.1   misho       1: #ifndef __MQTT_H
                      2: #define __MQTT_H
                      3: 
                      4: 
1.1.2.2   misho       5: struct tagArgs {
                      6:        io_sockaddr_t   addr;
                      7: 
1.1.2.4 ! misho       8:        ait_val_t       User;
        !             9:        ait_val_t       Pass;
        !            10: 
1.1.2.2   misho      11:        char            Dup;
                     12:        char            Retain;
                     13:        char            QoS;
1.1.2.3   misho      14:        char            isFile;
                     15:        ait_val_t       Value;
1.1.2.2   misho      16: 
1.1.2.3   misho      17:        ait_val_t       Publish;
                     18: 
                     19:        array_t         *Subscribes;
                     20: 
                     21:        void            (*free)(struct tagArgs*);
1.1.2.2   misho      22: };
                     23: 
                     24: extern struct tagArgs *args;
                     25: 
1.1.2.1   misho      26: 
                     27: #endif

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