File:  [ELWIX - Embedded LightWeight unIX -] / mqtt / inc / defs.h
Revision 1.1.1.1.2.17: download - view: text, annotated - select for diffs - revision graph
Thu Dec 8 17:02:25 2011 UTC (12 years, 7 months ago) by misho
Branches: mqtt1_0
Diff to: branchpoint 1.1.1.1: preferred, unified
add new fields in db
patch modules for use it
and patch tests

    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: 
   17: #define DEFAULT_CONFIG		"/etc/mqtt.conf"
   18: #define MQTT_PORT		"1883"
   19: #define MQTT_HOST		"localhost"
   20: #define MQTT_USER		"mqtt"
   21: 
   22: 
   23: #define VERB(x)		if ((x) <= Verbose)
   24: #define FTRACE(x)	VERB((x)) syslog(LOG_DEBUG, "I'm in %s(%d)", __func__, __LINE__);
   25: 
   26: #define LOGERR		{ \
   27: 				mqtt_Errno = errno; \
   28: 				strlcpy(mqtt_Error, strerror(errno), sizeof mqtt_Error); \
   29: 			}
   30: 
   31: 
   32: extern int mqtt_Errno;
   33: extern char mqtt_Error[STRSIZ];
   34: extern struct tagCallbacks call;
   35: 
   36: inline void mqtt_SetErr(int eno, char *estr, ...);
   37: inline struct mqtthdr *_mqtt_readHEADER(mqtt_msg_t * __restrict, u_char, int *, int *);
   38: 
   39: extern int Verbose, Kill;
   40: extern sched_root_task_t *root;
   41: 
   42: 
   43: #endif

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