version 1.1.1.1.2.23, 2011/12/05 10:37:17
|
version 1.1.1.1.2.25, 2011/12/05 15:30:49
|
Line 364 int mqtt_msgUNSUBACK(mqtt_msg_t * __restrict buf, unsi
|
Line 364 int mqtt_msgUNSUBACK(mqtt_msg_t * __restrict buf, unsi
|
/*** RECEIVER FUNCTIONS ***/ |
/*** RECEIVER FUNCTIONS ***/ |
|
|
/* |
/* |
|
* mqtt_readCONNECT() Read elements from CONNECT message |
|
* |
|
* @buf = Message buffer |
|
* @kasec = Keep Alive in seconds for current connection |
|
* @psConnID = ConnectID |
|
* @connLen = ConnectID length |
|
* @psUser = Username if !=NULL |
|
* @userLen = Username length |
|
* @psPass = Password for Username, only if csUser is set |
|
* @passLen = Password length |
|
* @psWillTopic = Will Topic if !=NULL Will Flags set into message |
|
* @topicLen = Will Topic length |
|
* @psWillMessage = Will Message, may be NULL |
|
* @msgLen = Will Message length |
|
* return: .reserved == 1 is error or == 0 connection flags & msg ok |
|
*/ |
|
mqtthdr_connflgs_t mqtt_readCONNECT(mqtt_msg_t * __restrict buf, unsigned short *kasec, |
|
char * __restrict psConnID, int connLen, |
|
char * __restrict psUser, int userLen, char * __restrict psPass, int passLen, |
|
char * __restrict psWillTopic, int topicLen, char * __restrict psWillMessage, int msgLen); |
|
/* |
|
* mqtt_readCONNACK() Read CONNACK message |
|
* |
|
* @buf = Message buffer |
|
* return: -1 error or >-1 CONNECT message return code |
|
*/ |
|
unsigned char mqtt_readCONNACK(mqtt_msg_t * __restrict buf); |
|
|
|
|
|
/*** ENGINE FUNCTIONS ***/ |
|
|
|
/* |
* mqttInitCallbacks() Init callback array for dispatcher |
* mqttInitCallbacks() Init callback array for dispatcher |
* |
* |
* return: NULL error or !=NULL allocated callback array, after use free with mqttFiniCallbacks() |
* return: NULL error or !=NULL allocated callback array, after use free with mqttFiniCallbacks() |