Diff for /mqtt/inc/Attic/aitmqtt.h between versions 1.1.1.1.2.25 and 1.1.1.1.2.26

version 1.1.1.1.2.25, 2011/12/05 15:30:49 version 1.1.1.1.2.26, 2011/12/05 17:05:38
Line 391  mqtthdr_connflgs_t mqtt_readCONNECT(mqtt_msg_t * __res Line 391  mqtthdr_connflgs_t mqtt_readCONNECT(mqtt_msg_t * __res
  * return: -1 error or >-1 CONNECT message return code   * return: -1 error or >-1 CONNECT message return code
  */   */
 unsigned char mqtt_readCONNACK(mqtt_msg_t * __restrict buf);  unsigned char mqtt_readCONNACK(mqtt_msg_t * __restrict buf);
   /*
    * mqtt_readDISCONNECT() Read DISCONNECT message
    *
    * @buf = Message buffer
    * return: -1 error, 0 ok, >0 undefined result
    */
   int mqtt_readDISCONNECT(mqtt_msg_t * __restrict buf);
   /*
    * mqtt_readPINGREQ() Read PINGREQ message
    *
    * @buf = Message buffer
    * return: -1 error, 0 ok, >0 undefined result
    */
   int mqtt_readPINGREQ(mqtt_msg_t * __restrict buf);
   /*
    * mqtt_readPINGRESP() Read PINGRESP message
    *
    * @buf = Message buffer
    * return: -1 error, 0 ok, >0 undefined result
    */
   int mqtt_readPINGRESP(mqtt_msg_t * __restrict buf);
   
   
 /*** ENGINE FUNCTIONS ***/  /*** ENGINE FUNCTIONS ***/

Removed from v.1.1.1.1.2.25  
changed lines
  Added in v.1.1.1.1.2.26


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