File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / inc / rtlm.h
Revision 1.2.2.1: download - view: text, annotated - select for diffs - revision graph
Wed Feb 1 15:04:24 2012 UTC (12 years, 5 months ago) by misho
Branches: mqtt1_1
add new rtlm callbacks

    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: 
   10: inline int mqttMkDir(sl_config *);
   11: 
   12: 
   13: struct tagCallbacks {
   14: 	/* mqtt_acc.so */
   15: 	void *(*OpenACC)(sl_config *);
   16: 	void (*CloseACC)(void *);
   17: 	int (*LoginACC)(sl_config *, void *, const char*, const char*);
   18: 
   19: 	/* mqtt_pub.so */
   20: 	void *(*OpenPUB)(sl_config *);
   21: 	void (*ClosePUB)(void *);
   22: 	int (*InitSessPUB)(sl_config *, void *, const char*, const char*, const char*, char, ...);
   23: 	int (*FiniSessPUB)(sl_config *, void *, const char*, const char*, const char*);
   24: 	int (*ChkSessPUB)(sl_config *, void *, const char*, const char*, const char*);
   25: 
   26: 	int (*WritePUB_topic)(sl_config *, void *, u_short, const char*, const char*, const char*, const char*, char);
   27: 	mqtt_subscr_t *(*ReadPUB_topic)(sl_config *, void *, u_short, const char*, char);
   28: 	int (*DeletePUB_topic)(sl_config *, void *, u_short, const char*, const char*, const char*, char);
   29: 
   30: 	int (*WritePUB_subscribe)(sl_config *, void *, u_short, const char*, const char*, const char*);
   31: 	mqtt_subscr_t *(*ReadPUB_subscribe)(sl_config *, void *, u_short, const char*);
   32: 	int (*DeletePUB_subscribe)(sl_config *, void *, u_short, const char*, const char*, const char*);
   33: 
   34: 	/* mqtt_log.so */
   35: 	void *(*OpenLOG)(sl_config *);
   36: 	void (*CloseLOG)(void *);
   37: 	int (*LOG)(void *, const char *, ...);
   38: };
   39: 
   40: 
   41: #endif

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