Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
paho.mqtt.c
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eclipse
paho.mqtt.c
Commits
bbaa9902
Commit
bbaa9902
authored
Apr 30, 2017
by
Ian Craggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove const from eyecatchers #168
parent
5724aa79
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
8 deletions
+10
-8
MQTTAsync.h
src/MQTTAsync.h
+6
-5
MQTTClient.h
src/MQTTClient.h
+4
-3
No files found.
src/MQTTAsync.h
View file @
bbaa9902
...
...
@@ -19,6 +19,7 @@
* Ian Craggs - automatic reconnect and offline buffering (send while disconnected)
* Ian Craggs - binary will message
* Ian Craggs - binary password
* Ian Craggs - remove const on eyecatchers #168
*******************************************************************************/
/********************************************************************/
...
...
@@ -539,7 +540,7 @@ DLLExport int MQTTAsync_create(MQTTAsync* handle, const char* serverURI, const c
typedef
struct
{
/** The eyecatcher for this structure. must be MQCO. */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0 */
int
struct_version
;
/** Whether to allow messages to be sent when the client library is not connected. */
...
...
@@ -569,7 +570,7 @@ DLLExport int MQTTAsync_createWithOptions(MQTTAsync* handle, const char* serverU
typedef
struct
{
/** The eyecatcher for this structure. must be MQTW. */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0 or 1
0 indicates no binary will message support
*/
...
...
@@ -612,7 +613,7 @@ typedef struct
typedef
struct
{
/** The eyecatcher for this structure. Must be MQTS */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0 */
int
struct_version
;
...
...
@@ -656,7 +657,7 @@ typedef struct
typedef
struct
{
/** The eyecatcher for this structure. must be MQTC. */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0, 1, 2, 3 4 or 5.
* 0 signifies no SSL options and no serverURIs
* 1 signifies no serverURIs
...
...
@@ -822,7 +823,7 @@ DLLExport int MQTTAsync_connect(MQTTAsync handle, const MQTTAsync_connectOptions
typedef
struct
{
/** The eyecatcher for this structure. Must be MQTD. */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0 or 1. 0 signifies no SSL options */
int
struct_version
;
/**
...
...
src/MQTTClient.h
View file @
bbaa9902
...
...
@@ -15,6 +15,7 @@
* Ian Craggs, Allan Stockdill-Mander - SSL updates
* Ian Craggs - multiple server connection support
* Ian Craggs - MQTT 3.1.1 support
* Ian Craggs - remove const from eyecatchers #168
*******************************************************************************/
/**
...
...
@@ -424,7 +425,7 @@ DLLExport int MQTTClient_create(MQTTClient* handle, const char* serverURI, const
typedef
struct
{
/** The eyecatcher for this structure. must be MQTW. */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0 or 1
0 means there is no binary payload option
*/
...
...
@@ -467,7 +468,7 @@ typedef struct
typedef
struct
{
/** The eyecatcher for this structure. Must be MQTS */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0 */
int
struct_version
;
...
...
@@ -520,7 +521,7 @@ typedef struct
typedef
struct
{
/** The eyecatcher for this structure. must be MQTC. */
c
onst
c
har
struct_id
[
4
];
char
struct_id
[
4
];
/** The version number of this structure. Must be 0, 1, 2, 3, 4 or 5.
* 0 signifies no SSL options and no serverURIs
* 1 signifies no serverURIs
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment