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
966d6b96
Commit
966d6b96
authored
Apr 03, 2017
by
Ian Craggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix for issue #164
parent
ba617f53
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
MQTTProtocolOut.c
src/MQTTProtocolOut.c
+2
-1
No files found.
src/MQTTProtocolOut.c
View file @
966d6b96
...
...
@@ -18,6 +18,7 @@
* Rong Xiang, Ian Craggs - C++ compatibility
* Ian Craggs - fix for bug 479376
* Ian Craggs - SNI support
* Ian Craggs - fix for issue #164
*******************************************************************************/
/**
...
...
@@ -107,7 +108,7 @@ int MQTTProtocol_connect(const char* ip_address, Clients* aClient, int MQTTVersi
if
(
SSLSocket_setSocketForSSL
(
&
aClient
->
net
,
aClient
->
sslopts
,
addr
)
==
1
)
{
rc
=
SSLSocket_connect
(
aClient
->
net
.
ssl
,
aClient
->
net
.
socket
);
if
(
rc
==
-
1
)
if
(
rc
==
TCPSOCKET_INTERRUPTED
)
aClient
->
connect_state
=
2
;
/* SSL connect called - wait for completion */
}
else
...
...
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