Skip to content
This repository was archived by the owner on Jan 29, 2023. It is now read-only.

Commit 3ece79e

Browse files
authored
v1.4.4 to change license to GPLv3
### Releases v1.4.4 1. Change license from `MIT` to `GPLv3`. Check [Licensing of SSLClient #16](khoih-prog/EthernetWebServer_SSL#16)
1 parent 9e91f42 commit 3ece79e

22 files changed

+111
-132
lines changed

src/EthernetHttpClient_SSL_STM32.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,8 @@
66
77
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
9-
Licensed under MIT license
109
11-
Version: 1.4.3
10+
Version: 1.4.4
1211
1312
Version Modified By Date Comments
1413
------- ----------- ---------- -----------
@@ -19,7 +18,8 @@
1918
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2019
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2120
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
22-
*************************************************************************************************************************************/
21+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
22+
****************************************************************************************************************************/
2323

2424
// Library to simplify HTTP fetching on Arduino
2525
// (c) Copyright Arduino. 2016

src/EthernetWebServer_SSL_STM32-impl.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
#pragma once
2827

src/EthernetWebServer_SSL_STM32.h

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
#pragma once
2827

@@ -32,13 +31,13 @@
3231
#error This code is designed to run on STM32F/L/H/G/WB/MP1 platform! Please check your Tools->Board setting.
3332
#endif
3433

35-
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.4.3"
34+
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION "EthernetWebServer_SSL_STM32 v1.4.4"
3635

3736
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MAJOR 1
3837
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_MINOR 4
39-
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 3
38+
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_PATCH 4
4039

41-
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1004003
40+
#define ETHERNET_WEBSERVER_SSL_STM32_VERSION_INT 1004004
4241

4342
#define USE_NEW_WEBSERVER_VERSION true
4443

src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
// Class to simplify HTTP fetching on Arduino
2827
// (c) Copyright 2010-2011 MCQN Ltd

src/Ethernet_HTTPClient/Ethernet_HttpClient.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
// Class to simplify HTTP fetching on Arduino
2827
// (c) Copyright MCQN Ltd. 2010-2012

src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
// Library to simplify HTTP fetching on Arduino
2827
// (c) Copyright Arduino. 2019

src/Ethernet_HTTPClient/Ethernet_URLEncoder.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
// Library to simplify HTTP fetching on Arduino
2827
// (c) Copyright Arduino. 2019

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
// (c) Copyright Arduino. 2016
2827
// Released under Apache License, version 2.0

src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
// (c) Copyright Arduino. 2016
2827
// Released under Apache License, version 2.0

src/Parsing_SSL_STM32-impl.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
#pragma once
2827

src/detail/Debug_STM32.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
#pragma once
2827

src/detail/RequestHandler_STM32.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
#pragma once
2827

src/detail/RequestHandlersImpl_STM32.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
#pragma once
2827

src/detail/mimetable.h

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@
66
77
Use SSLClient Library code from https://github.com/OPEnSLab-OSU/SSLClient
88
9-
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL_STM32
10-
Licensed under MIT license
11-
12-
Licensed under MIT license
9+
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
10+
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_STM32
1311
14-
Version: 1.4.3
12+
Version: 1.4.4
1513
1614
Version Modified By Date Comments
1715
------- ----------- ---------- -----------
@@ -22,7 +20,8 @@
2220
1.4.1 K Hoang 27/12/2021 Fix wrong http status header bug and authenticate issue caused by libb64
2321
1.4.2 K Hoang 11/01/2022 Fix libb64 fallthrough compile warning
2422
1.4.3 K Hoang 02/03/2022 Fix decoding error bug
25-
*************************************************************************************************************************************/
23+
1.4.4 K Hoang 19/03/2022 Change licence from `MIT` to `GPLv3`
24+
****************************************************************************************************************************/
2625

2726
#ifndef __MIMETABLE_H__
2827
#define __MIMETABLE_H__

0 commit comments

Comments
 (0)