-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove retries and enable setting TCP/IP port (#26)
Retries were not limited, making it possible to have a _long_ blocking call, which is not a nice thing in Arduino `loop()`. Limitting would only partially fix the problem. Removing them altogether works much better and user can retry at her own convenience. Support for setting the TCP/IP port was added, which is needed when using a TLS/SSL (network) client class. Before, we always used HTTP port, which would not work.
- Loading branch information
Showing
3 changed files
with
57 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
name=Pubnub | ||
version=3.0.1 | ||
version=3.1.0 | ||
author=Vladimir Veljkovic <[email protected]> | ||
maintainer=Vladimir Veljkovic <[email protected]> | ||
sentence=Pubnub SDK for Arduino. | ||
|