Diff for /mqtt/inc/rtlm.h between versions 1.1.2.3 and 1.1.2.7

version 1.1.2.3, 2011/11/23 08:50:03 version 1.1.2.7, 2011/11/24 15:14:08
Line 10  void mqttUnloadRTLM(int); Line 10  void mqttUnloadRTLM(int);
 inline int mqttMkDir(sl_config *);  inline int mqttMkDir(sl_config *);
   
   
void *(*mqttOpenACC)(sl_config *);struct tagCallbacks {
void (*mqttCloseACC)(void *);        /* mqtt_acc.so */
void *(*mqttOpenPUB)(sl_config *);        void *(*OpenACC)(sl_config *);
void (*mqttClosePUB)(void *);        void (*CloseACC)(void *);
void *(*mqttOpenLOG)(sl_config *);        int (*LoginACC)(sl_config *, void *, const char*, const char*, ...);
void (*mqttCloseLOG)(void *);
         /* mqtt_pub.so */
         void *(*OpenPUB)(sl_config *);
         void (*ClosePUB)(void *);
         int (*InitSessPUB)(sl_config *, void *, const char*, const char*, u_short);
         int (*FiniSessPUB)(sl_config *, void *, const char*, const char*);
 
         /* mqtt_log.so */
         void *(*OpenLOG)(sl_config *);
         void (*CloseLOG)(void *);
         int (*LOG)(void *, const char *, ...);
 };
   
   
 #endif  #endif

Removed from v.1.1.2.3  
changed lines
  Added in v.1.1.2.7


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