esp-idf/examples/network
David Cermak cce9a80aee fix(sta2eth): Check for null `netif` before starting/stopping DHCP server
Fixes a potential null pointer dereference in `esp_netif` when PPP mode is enabled.
In the Ethernet event handler, `esp_netif_dhcps_start()` and `esp_netif_dhcps_stop()`
are now only called if `netif` is non-null (in provisioning mode when
the actual TCP/IP stack from IDF is used, in work mode the `netif` is
null, since the trafic is simply forwarded between wireless and wired
networks without TCP/IP stack involved)

Closes https://github.com/espressif/esp-idf/issues/14816
2024-11-07 17:48:59 +01:00
..
bridge feat(esp32c61): disable unsupported build test 2024-07-16 16:06:19 +08:00
eth2ap feat(wifi): add wifi support for esp32c61 2024-08-30 20:43:06 +08:00
simple_sniffer feat(wifi): add wifi support for esp32c61 2024-08-30 20:43:06 +08:00
sta2eth fix(sta2eth): Check for null `netif` before starting/stopping DHCP server 2024-11-07 17:48:59 +01:00
vlan_support feat(esp32c61): disable unsupported build test 2024-07-16 16:06:19 +08:00
.build-test-rules.yml ci: update .build-test-rules.yml based on latest detected components 2024-05-22 20:52:32 +08:00
README.md examples: create a new folder structure for generic network examples 2021-07-26 12:25:19 +02:00

README.md

Network Examples

Contains examples related to general network environment, test & analysis.

See the README.md file in the upper level examples directory for more information about examples.