version 1.1.1.1.2.32, 2011/12/09 09:55:27
|
version 1.1.1.1.2.33, 2011/12/09 11:46:48
|
Line 108 typedef struct {
|
Line 108 typedef struct {
|
|
|
typedef unsigned char mqtthdr_protover_t; |
typedef unsigned char mqtthdr_protover_t; |
|
|
typedef struct { | typedef union { |
unsigned char reserved:1, | struct { |
clean_sess:1, | unsigned char reserved:1, |
will_flg:1, | clean_sess:1, |
will_qos:2, | will_flg:1, |
will_retain:1, | will_qos:2, |
password:1, | will_retain:1, |
username:1; | password:1, |
| username:1; |
| }; |
| unsigned char flags; |
} __packed mqtthdr_connflgs_t; |
} __packed mqtthdr_connflgs_t; |
|
|
typedef struct { |
typedef struct { |
Line 386 int mqtt_msgUNSUBACK(mqtt_msg_t * __restrict buf, unsi
|
Line 389 int mqtt_msgUNSUBACK(mqtt_msg_t * __restrict buf, unsi
|
* @psWillMessage = Will Message, may be NULL if !NULL must be free() after use! |
* @psWillMessage = Will Message, may be NULL if !NULL must be free() after use! |
* return: .reserved == 1 is error or == 0 connection flags & msg ok |
* return: .reserved == 1 is error or == 0 connection flags & msg ok |
*/ |
*/ |
mqtthdr_connflgs_t mqtt_readCONNECT(mqtt_msg_t * __restrict buf, unsigned short *kasec, | mqtthdr_connack_t mqtt_readCONNECT(mqtt_msg_t * __restrict buf, unsigned short *kasec, |
char * __restrict psConnID, int connLen, |
char * __restrict psConnID, int connLen, |
char * __restrict psUser, int userLen, char * __restrict psPass, int passLen, |
char * __restrict psUser, int userLen, char * __restrict psPass, int passLen, |
char ** __restrict psWillTopic, char ** __restrict psWillMessage); |
char ** __restrict psWillTopic, char ** __restrict psWillMessage); |