File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / inc / defs.h
Revision 1.2: download - view: text, annotated - select for diffs - revision graph
Fri Jan 27 15:05:38 2012 UTC (12 years, 5 months ago) by misho
Branches: MAIN
CVS tags: mqtt1_1, HEAD
added new files

    1: #ifndef __DEFS_H
    2: #define __DEFS_H
    3: 
    4: 
    5: #define STRSIZ			256
    6: #define MAX_CONNID		24
    7: #define MAX_CRED		13
    8: #define MQTTMSG_MAX		65529
    9: #define WILDCARDS		"/#+"
   10: #define MQTT_CONNFLGS_INIT	{ 1, 1, 1, 3, 1, 1, 1 }
   11: 
   12: #define MQTT_DATA_MAX		268435455
   13: #define MQTT_CONN_STR		"MQIsdp"
   14: #define MQTT_PROTO_VER		3
   15: #define MQTT_KEEPALIVE		10
   16: #define MQTT_DEFAULT_MSGID	0xDEBA
   17: 
   18: #define DEFAULT_RETRY		1
   19: #define DEFAULT_CONFIG		"/etc/mqtt.conf"
   20: #define MQTT_PORT		"1883"
   21: #define MQTT_HOST		"localhost"
   22: #define MQTT_USER		"mqtt"
   23: 
   24: 
   25: #define LOGERR		{ \
   26: 				mqtt_Errno = errno; \
   27: 				strlcpy(mqtt_Error, strerror(errno), sizeof mqtt_Error); \
   28: 			}
   29: 
   30: 
   31: extern int mqtt_Errno;
   32: extern char mqtt_Error[STRSIZ];
   33: extern struct tagCallbacks call;
   34: 
   35: extern char cliCmd[], *cliStr[];
   36: 
   37: inline void mqtt_SetErr(int eno, char *estr, ...);
   38: inline struct mqtthdr *_mqtt_readHEADER(mqtt_msg_t * __restrict, u_char, int *, int *);
   39: 
   40: extern intptr_t Kill;
   41: 
   42: extern struct tagCallbacks call;
   43: extern sqlite3 *acc, *pub;
   44: extern FILE *logg;
   45: 
   46: 
   47: #endif

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