Annotation of mqtt/inc/defs.h, revision 1.1.1.1.2.4

1.1       misho       1: #ifndef __DEFS_H
                      2: #define __DEFS_H
                      3: 
                      4: 
1.1.1.1.2.3  misho       5: #define STRSIZ         256
1.1.1.1.2.4! misho       6: #define MQTTMSG_MAX    65529
1.1.1.1.2.3  misho       7: #define WILDCARDS      "/#+"
1.1       misho       8: 
1.1.1.1.2.1  misho       9: #define LOGERR { \
                     10:                        mqtt_Errno = errno; \
                     11:                        strlcpy(mqtt_Error, strerror(errno), sizeof mqtt_Error); \
                     12:                }
                     13: 
1.1       misho      14: 
1.1.1.1.2.2  misho      15: inline void mqtt_SetErr(int eno, char *estr, ...);
                     16: 
                     17: 
1.1       misho      18: #endif

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