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

Commit 0dd5781

Browse files
authored
v1.8.0 to use Ethernet_Generic library
### Releases v1.8.0 1. Use new [Ethernet_Generic library](https://github.com/khoih-prog/Ethernet_Generic) as default for W5x00. 2. Rewrite to avoid `multiple-definitions` linker error for multiple-file project 3. Add example [multiFileProject](examples/multiFileProject) to demo how to avoid `multiple-definitions` linker error for multiple-file project 4. Update `Packages' Patches`
1 parent 4ddbf8a commit 0dd5781

26 files changed

+757
-438
lines changed

src/EthernetHttpClient_SSL.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer_SSL
1010
11-
Version: 1.7.8
11+
Version: 1.8.0
1212
1313
Version Modified By Date Comments
1414
------- ----------- ---------- -----------
@@ -24,6 +24,7 @@
2424
1.7.6 K Hoang 14/03/2022 Fix bug when using QNEthernet staticIP. Add staticIP option to NativeEthernet
2525
1.7.7 K Hoang 14/03/2022 Change licence from `MIT` to `GPLv3`
2626
1.7.8 K Hoang 29/03/2022 Sync with `SSLClient` v1.6.11
27+
1.8.0 K Hoang 05/04/2022 Use Ethernet_Generic library as default. Support SPI2 for ESP32
2728
*****************************************************************************************************************************/
2829

2930
// Library to simplify HTTP fetching on Arduino
@@ -32,10 +33,14 @@
3233

3334
#pragma once
3435

36+
#ifndef ETHERNET_HTTP_CLIENT_SSL_H
37+
#define ETHERNET_HTTP_CLIENT_SSL_H
38+
3539
#include <Arduino.h>
3640

3741
#include "detail/Debug.h"
3842
#include "Ethernet_HTTPClient/Ethernet_HttpClient.h"
3943
#include "Ethernet_HTTPClient/Ethernet_WebSocketClient.h"
4044
#include "Ethernet_HTTPClient/Ethernet_URLEncoder.h"
4145

46+
#endif // ETHERNET_HTTP_CLIENT_SSL_H

0 commit comments

Comments
 (0)