Annotation of mqtt/inc/rtlm.h, revision 1.1.2.6

1.1.2.1   misho       1: #ifndef __RTLM_H
                      2: #define __RTLM_H
                      3: 
                      4: 
                      5: void mqttLog(const char *, ...);
                      6: 
                      7: void *mqttLoadRTLM(sl_config*, int);
                      8: void mqttUnloadRTLM(int);
                      9: 
1.1.2.2   misho      10: inline int mqttMkDir(sl_config *);
                     11: 
                     12: 
1.1.2.4   misho      13: struct tagCallbacks {
                     14:        /* mqtt_acc.so */
                     15:        void *(*OpenACC)(sl_config *);
                     16:        void (*CloseACC)(void *);
1.1.2.5   misho      17:        int (*LoginACC)(sl_config *, void *, const char*, const char*, ...);
1.1.2.4   misho      18: 
                     19:        /* mqtt_pub.so */
                     20:        void *(*OpenPUB)(sl_config *);
                     21:        void (*ClosePUB)(void *);
1.1.2.6 ! misho      22:        int (*InitSessPUB)(sl_config *, void *, const char*, const char*, u_short);
1.1.2.4   misho      23: 
                     24:        /* mqtt_log.so */
                     25:        void *(*OpenLOG)(sl_config *);
                     26:        void (*CloseLOG)(void *);
                     27:        int (*LOG)(void *, const char *, ...);
                     28: };
1.1.2.1   misho      29: 
                     30: 
                     31: #endif

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