Commit Graph

58 Commits

Author SHA1 Message Date
Links
794163cec9 Merge branch 'gpn18' into socketio 2019-06-10 13:30:54 +02:00
Links
3063ad27ae clang-format 2019-06-10 13:00:01 +02:00
Links
e8df841b7f add support for ESP32 ETH.h see #443 2019-06-10 09:29:58 +02:00
Links
0aa07421a6 add events for ping / pong rx #382 2019-05-30 20:15:03 +02:00
Links
c361895a4b add setCACert based on #434 2019-05-30 16:32:30 +02:00
Links
d325bd338e Merge branch 'master' into gpn18 2018-10-26 20:33:29 +02:00
Jozef Sovcik
68800e2e7a implementing heartbeat 2018-10-23 18:01:33 +02:00
Sanket Patel
4db22fe5e4 make masking RFC complaint and fix #208 2018-09-23 16:49:10 +05:30
Links
f95c014342 basic event sending works 2018-05-12 16:53:34 +02:00
Links
7ddcdc2bd3 add info for AVR usage with version 2.x.x 2018-05-12 12:40:56 +02:00
Links
bde97179bf fix unused parameter warnings
fix switch warinings

part of #319
2018-05-12 11:39:59 +02:00
Links
486a612693 allow usage of IPAddress #230 2018-05-10 20:12:48 +02:00
getbyte
50d9a8d6e5 fix undefined virtual methods 2018-03-18 01:25:49 +03:00
Links
b059d0711c sort examples by platform
rework the travis tests
create ESP32 examples
2018-02-07 17:28:17 +01:00
Links
f62aa6478d more ESP32 stuff 2018-02-06 21:36:44 +01:00
Markus
fa580a568f Merge pull request #223 from robokoding/master
Add ESP32 support from @robokoding
2017-09-20 18:53:55 +02:00
Links
c64a082270 Merge branch 'write_big_data' 2017-08-19 21:36:10 +02:00
Links
522a67bc1b add setReconnectInterval for the Client 2017-08-19 21:16:07 +02:00
Silver Kuusik
4fc80871a6 Update WebSockets.h 2017-07-30 00:18:37 +02:00
Martin Becker
42ab3168c5 Switch to setting extra headers via function 2017-07-19 09:59:34 +02:00
Links
c911776860 add virtual to write
fix some naming
2017-04-10 17:49:42 +02:00
Links
adb52b11e9 handle cases when not all data can be written to TCP stack #187 2017-04-09 17:58:23 +02:00
Links
e675c7590e add missing include for ESP with W5100 #177 2017-03-09 18:43:23 +01:00
Links
34a2d282e4 allow to moves all Header strings to Flash (~300 Byte) #152 2017-02-22 15:30:58 +01:00
Links
e93a323e56 add support for Fragmentation / continuation opcode Receive 2017-02-22 14:29:26 +01:00
CAOU123
7810d0d0b3 Make library compatible with Particle devices 2016-10-20 15:46:44 -04:00
Markus
529a86cc26 Merge pull request #90 from kenkus-futurice/master
Add socket.io client
2016-09-11 17:13:57 +02:00
Sergey Anisimov
7361e2b1b6 WEBSOCKETS_NETWORK_TYPE exteral definition
Making possible to define WEBSOCKETS_NETWORK_TYPE as a compile parameter.
2016-07-15 20:29:13 +01:00
joe
e589b40b25 custom http header validation implementation 2016-06-08 23:04:18 +01:00
Kenta Kusumoto
f8a5acc9b7 Add socket.io client 2016-06-06 15:21:13 +03:00
Thorsten Freitag
d36f7bb100 Changed Header value to lower case upgrade, seems to fix connection issues with SAP HCP IoT services. Changed setAuthorization(const char * auth) to send Auth header as is, without BASIC to enable oAuth tokens in header 2016-05-09 00:11:42 +10:00
Markus Sattler
450ca76a74 add return value to all send functions 2016-02-20 12:27:19 +01:00
Markus Sattler
c57a4c19ab add HTTP Basic Authorization to WS Client and Server
see: #55
2016-02-17 17:56:03 +01:00
Markus Sattler
2d87bfa3d6 less ram usage when using strings 2016-02-06 19:21:24 +01:00
Markus Sattler
16824906c8 increase timeout to 2000ms
sync TCP is default
2016-01-30 12:01:09 +01:00
Me No Dev
512e3f6c09 add ESP31B support and fix header size 2016-01-30 02:24:29 +02:00
Markus Sattler
63f8675816 update README.md 2016-01-29 13:52:27 +01:00
Markus Sattler
76853c7a73 async client working 2016-01-29 13:16:02 +01:00
Markus Sattler
5c2c257526 fix server disconnect problems 2016-01-23 18:34:30 +01:00
Markus Sattler
57e30e0634 First steps to do async 2016-01-23 16:27:02 +01:00
Markus Sattler
21e092d179 code cleanup
improve readWait error handling
2015-12-28 16:33:54 +01:00
Markus Sattler
ff33056309 try to send data in one TCP packed if possible,
add random mask support for short frames.
may helps with #34
2015-12-28 03:19:45 +01:00
Markus Sattler
848979ecf0 use String to store fingerprint
(const char * can be invalidate based on which scope it coming from)
move _fingerprint to Client class only (server not need it)
2015-12-24 12:58:05 +01:00
Chris Hinze
73680279f5 verify ssl certificate fingerprint 2015-12-24 04:47:11 +01:00
Markus Sattler
83ac64b72b add support for AVR
this need some more testing but basics are done
2015-12-10 11:16:08 +01:00
Markus Sattler
093797a815 first step for SSL (wss) support 2015-12-10 09:36:18 +01:00
Markus Sattler
7a22dad9d1 try to improve
see: #23
2015-12-05 11:43:03 +01:00
Markus Sattler
39f912b982 add possibility to add Header To Payload to save one TCP package
see #12
2015-10-11 10:11:32 +02:00
Markus Sattler
1a533cd15c first steps to allow sending continuation frame 2015-06-17 10:27:01 +02:00
Markus Sattler
e1e6280e82 first working WebSocketClient
add LGPLv2.1
2015-05-24 15:40:47 +02:00