Skip to content

Commit

Permalink
Merge branch 'release/0.4.2' into dev
Browse files Browse the repository at this point in the history
* allow wireguard to bind to PPP interface (thanks to Tim Lunn)
  • Loading branch information
droscy committed Jun 26, 2024
2 parents 8cc732f + 4ae13a5 commit 49db6e5
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,8 @@ This code targets only ESPHome and has been tested on the following platforms:
For additional information see:

* the original feature-request [esphome/feature-requests#1444](https://github.com/esphome/feature-requests/issues/1444)

* the first pull-request [esphome/esphome#4256](https://github.com/esphome/esphome/pull/4256)

* `esp8266` support [esphome/esphome#6365](https://github.com/esphome/esphome/pull/6365)

* LibreTiny support [droscy/esp_wireguard#4](https://github.com/droscy/esp_wireguard/pull/4)


Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "esp_wireguard",
"version": "0.4.1",
"version": "0.4.2",
"description": "WireGuard implementation for ESPHome",
"keywords":[
"esphome",
Expand Down
2 changes: 1 addition & 1 deletion src/wireguardif.c
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@ err_t wireguardif_init(struct netif *netif) {
char lwip_netif_name[8] = {0,};

// list of interfaces to try to bind wireguard to
const char* ifkeys[2] = {"WIFI_STA_DEF", "ETH_DEF"};
const char* ifkeys[3] = {"WIFI_STA_DEF", "ETH_DEF", "PPP_DEF"};

// ifkey will contain the selected interface key
const char* ifkey = NULL;
Expand Down

0 comments on commit 49db6e5

Please sign in to comment.