--- mqtt/inc/defs.h 2011/11/22 14:48:25 1.1.1.1.2.6 +++ mqtt/inc/defs.h 2011/11/29 23:23:31 1.1.1.1.2.10 @@ -11,24 +11,11 @@ #define MQTT_PROTO_VER 3 #define MQTT_KEEPALIVE 10 -#define MQTT_TYPE_UNKNOWN 0 /* reserved */ -#define MQTT_TYPE_CONNECT 1 /* client request to connect to server */ -#define MQTT_TYPE_CONNACK 2 /* connect acknowledgment */ -#define MQTT_TYPE_PUBLISH 3 /* publish message */ -#define MQTT_TYPE_PUBACK 4 /* publish acknowledgment */ -#define MQTT_TYPE_PUBREC 5 /* publish received (assured delivery part 1) */ -#define MQTT_TYPE_PUBREL 6 /* publish release (assured delivery part 2) */ -#define MQTT_TYPE_PUBCOMP 7 /* publish complete (assured delivery part 3) */ -#define MQTT_TYPE_SUBSCRIBE 8 /* client subscribe request */ -#define MQTT_TYPE_SUBACK 9 /* subscribe acknowledgment */ -#define MQTT_TYPE_UNSUBSCRIBE 10 /* client unsubscribe request */ -#define MQTT_TYPE_UNSUBACK 11 /* unsubscribe acknowledgment */ -#define MQTT_TYPE_PINGREQ 12 /* PING request */ -#define MQTT_TYPE_PINGRESP 13 /* PING response */ -#define MQTT_TYPE_DISCONNECT 14 /* client is disconnecting */ -#define MQTT_TYPE_MAX 15 /* reserved */ +#define DEFAULT_CONFIG "/etc/mqtt.conf" +#define VERB(x) if ((x) <= Verbose) + #define LOGERR { \ mqtt_Errno = errno; \ strlcpy(mqtt_Error, strerror(errno), sizeof mqtt_Error); \ @@ -37,7 +24,11 @@ extern int mqtt_Errno; extern char mqtt_Error[STRSIZ]; +extern struct tagCallbacks call; + inline void mqtt_SetErr(int eno, char *estr, ...); + +extern int Verbose; #endif