This repository was archived by the owner on Jan 29, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 26 files changed +78
-77
lines changed Expand file tree Collapse file tree 26 files changed +78
-77
lines changed Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
// Library to simplify HTTP fetching on Arduino
29
29
// (c) Copyright Arduino. 2016
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
30
- #define ETHERNET_WEBSERVER_SSL_VERSION " EthernetWebServer_SSL v1.7.6 "
30
+ #define ETHERNET_WEBSERVER_SSL_VERSION " EthernetWebServer_SSL v1.7.7 "
31
31
32
32
#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
33
33
#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 7
34
- #define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 6
34
+ #define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 7
35
35
36
- #define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007006
36
+ #define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007007
37
37
38
38
#define USE_NEW_WEBSERVER_VERSION true
39
39
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
#pragma once
28
28
29
29
#include " detail/Debug.h"
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
// Class to simplify HTTP fetching on Arduino
29
29
// (c) Copyright 2010-2011 MCQN Ltd
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
// Class to simplify HTTP fetching on Arduino
29
29
// (c) Copyright MCQN Ltd. 2010-2012
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
// Library to simplify HTTP fetching on Arduino
29
29
// (c) Copyright Arduino. 2019
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
// Library to simplify HTTP fetching on Arduino
29
29
// (c) Copyright Arduino. 2019
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
// (c) Copyright Arduino. 2016
29
29
// Released under Apache License, version 2.0
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
// (c) Copyright Arduino. 2016
29
29
// Released under Apache License, version 2.0
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
+
27
28
#pragma once
28
29
29
30
#include < Arduino.h>
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#if (ESP32 || ESP8266)
29
29
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
Original file line number Diff line number Diff line change 7
7
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
8
8
9
9
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10
- Licensed under MIT license
11
10
12
- Version: 1.7.6
11
+ Version: 1.7.7
13
12
14
13
Version Modified By Date Comments
15
14
------- ----------- ---------- -----------
23
22
1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
24
23
1.7.5 K Hoang 02/03/2022 Fix decoding error bug
25
24
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
26
- *************************************************************************************************************************************/
25
+ 1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
26
+ *****************************************************************************************************************************/
27
27
28
28
#pragma once
29
29
You can’t perform that action at this time.
0 commit comments