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 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828// Library to simplify HTTP fetching on Arduino
2929// (c) Copyright Arduino. 2016
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828#pragma once
2929
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828#pragma once
2929
30- #define ETHERNET_WEBSERVER_SSL_VERSION " EthernetWebServer_SSL v1.7.6 "
30+ #define ETHERNET_WEBSERVER_SSL_VERSION " EthernetWebServer_SSL v1.7.7 "
3131
3232#define ETHERNET_WEBSERVER_SSL_VERSION_MAJOR 1
3333#define ETHERNET_WEBSERVER_SSL_VERSION_MINOR 7
34- #define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 6
34+ #define ETHERNET_WEBSERVER_SSL_VERSION_PATCH 7
3535
36- #define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007006
36+ #define ETHERNET_WEBSERVER_SSL_VERSION_INT 1007007
3737
3838#define USE_NEW_WEBSERVER_VERSION true
3939
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727#pragma once
2828
2929#include " detail/Debug.h"
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828// Class to simplify HTTP fetching on Arduino
2929// (c) Copyright 2010-2011 MCQN Ltd
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828// Class to simplify HTTP fetching on Arduino
2929// (c) Copyright MCQN Ltd. 2010-2012
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828// Library to simplify HTTP fetching on Arduino
2929// (c) Copyright Arduino. 2019
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828// Library to simplify HTTP fetching on Arduino
2929// (c) Copyright Arduino. 2019
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828// (c) Copyright Arduino. 2016
2929// Released under Apache License, version 2.0
Original file line number Diff line number Diff line change 77 Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
99 Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
10- Licensed under MIT license
1110
12- Version: 1.7.6
11+ Version: 1.7.7
1312
1413 Version Modified By Date Comments
1514 ------- ----------- ---------- -----------
2322 1.7.4 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2423 1.7.5 K Hoang 02/03/2022 Fix decoding error bug
2524 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+ *****************************************************************************************************************************/
2727
2828// (c) Copyright Arduino. 2016
2929// Released under Apache License, version 2.0
You can’t perform that action at this time.
0 commit comments