Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: C12832 EthernetInterface IBMIoTClientEthernetExample LM75B MMA7660 MQTT iBMrfid mbed-rtos mbed
Fork of IBMIoTClientEthernetExample by
MQTT/MQTTPacket/MQTTPublish.h@6:37b6d0d56190, 2014-08-20 (annotated)
- Committer:
- samdanbury
- Date:
- Wed Aug 20 12:45:14 2014 +0000
- Revision:
- 6:37b6d0d56190
Code completely changed to improve the structure, flow and memory usage of the application
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| samdanbury | 6:37b6d0d56190 | 1 | /******************************************************************************* |
| samdanbury | 6:37b6d0d56190 | 2 | * Copyright (c) 2014 IBM Corp. |
| samdanbury | 6:37b6d0d56190 | 3 | * |
| samdanbury | 6:37b6d0d56190 | 4 | * All rights reserved. This program and the accompanying materials |
| samdanbury | 6:37b6d0d56190 | 5 | * are made available under the terms of the Eclipse Public License v1.0 |
| samdanbury | 6:37b6d0d56190 | 6 | * and Eclipse Distribution License v1.0 which accompany this distribution. |
| samdanbury | 6:37b6d0d56190 | 7 | * |
| samdanbury | 6:37b6d0d56190 | 8 | * The Eclipse Public License is available at |
| samdanbury | 6:37b6d0d56190 | 9 | * http://www.eclipse.org/legal/epl-v10.html |
| samdanbury | 6:37b6d0d56190 | 10 | * and the Eclipse Distribution License is available at |
| samdanbury | 6:37b6d0d56190 | 11 | * http://www.eclipse.org/org/documents/edl-v10.php. |
| samdanbury | 6:37b6d0d56190 | 12 | * |
| samdanbury | 6:37b6d0d56190 | 13 | * Contributors: |
| samdanbury | 6:37b6d0d56190 | 14 | * Ian Craggs - initial API and implementation and/or initial documentation |
| samdanbury | 6:37b6d0d56190 | 15 | *******************************************************************************/ |
| samdanbury | 6:37b6d0d56190 | 16 | |
| samdanbury | 6:37b6d0d56190 | 17 | #ifndef MQTTPUBLISH_H_ |
| samdanbury | 6:37b6d0d56190 | 18 | #define MQTTPUBLISH_H_ |
| samdanbury | 6:37b6d0d56190 | 19 | |
| samdanbury | 6:37b6d0d56190 | 20 | int MQTTSerialize_publish(unsigned char* buf, int buflen, unsigned char dup, int qos, unsigned char retained, unsigned short packetid, |
| samdanbury | 6:37b6d0d56190 | 21 | MQTTString topicName, unsigned char* payload, int payloadlen); |
| samdanbury | 6:37b6d0d56190 | 22 | |
| samdanbury | 6:37b6d0d56190 | 23 | int MQTTDeserialize_publish(unsigned char* dup, int* qos, unsigned char* retained, unsigned short* packetid, MQTTString* topicName, |
| samdanbury | 6:37b6d0d56190 | 24 | unsigned char** payload, int* payloadlen, unsigned char* buf, int len); |
| samdanbury | 6:37b6d0d56190 | 25 | |
| samdanbury | 6:37b6d0d56190 | 26 | int MQTTSerialize_puback(unsigned char* buf, int buflen, unsigned short packetid); |
| samdanbury | 6:37b6d0d56190 | 27 | int MQTTSerialize_pubrel(unsigned char* buf, int buflen, unsigned char dup, unsigned short packetid); |
| samdanbury | 6:37b6d0d56190 | 28 | int MQTTSerialize_pubcomp(unsigned char* buf, int buflen, unsigned short packetid); |
| samdanbury | 6:37b6d0d56190 | 29 | |
| samdanbury | 6:37b6d0d56190 | 30 | #endif /* MQTTPUBLISH_H_ */ |
