| 
version 1.1.1.1.2.6, 2011/11/22 14:48:25
 | 
version 1.1.1.1.2.9, 2011/11/29 22:42:23
 | 
| 
 Line 11
 | 
 Line 11
 | 
 |  #define MQTT_PROTO_VER          3 | 
  #define MQTT_PROTO_VER          3 | 
 |  #define MQTT_KEEPALIVE          10 | 
  #define MQTT_KEEPALIVE          10 | 
 |   | 
   | 
| #define MQTT_TYPE_UNKNOWN       0       /* reserved */ | #define DEFAULT_CONFIG             "/etc/mqtt.conf" | 
| #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 LOGERR  { \ | 
  #define LOGERR  { \ | 
| 
 Line 37
 | 
 Line 22
 | 
 |   | 
   | 
 |  extern int mqtt_Errno; | 
  extern int mqtt_Errno; | 
 |  extern char mqtt_Error[STRSIZ]; | 
  extern char mqtt_Error[STRSIZ]; | 
 |   | 
  extern struct tagCallbacks call; | 
 |   | 
   | 
 |  inline void mqtt_SetErr(int eno, char *estr, ...); | 
  inline void mqtt_SetErr(int eno, char *estr, ...); | 
 |   | 
   | 
 |   | 
  extern int Verbose; | 
 |   | 
   | 
 |   | 
   | 
 |  #endif | 
  #endif |