• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

asio/11-Mar-2024-1,7011,253

cbor/11-Mar-2024-353271

coap_client/11-Mar-2024-724525

coap_server/11-Mar-2024-592418

esp_http_client/11-Mar-2024-933766

esp_local_ctrl/11-Mar-2024-1,255890

http2_request/11-Mar-2024-995592

http_request/11-Mar-2024-330240

http_server/11-Mar-2024-6,4054,595

https_mbedtls/11-Mar-2024-439303

https_request/11-Mar-2024-609463

https_server/11-Mar-2024-1,4691,057

https_x509_bundle/11-Mar-2024-257170

icmp_echo/11-Mar-2024-387281

mdns/11-Mar-2024-667528

modbus/11-Mar-2024-3,4062,638

mqtt/11-Mar-2024-2,9732,192

pppos_client/11-Mar-2024-3,2882,082

slip/slip_udp/11-Mar-2024-720412

smtp_client/11-Mar-2024-689494

sntp/11-Mar-2024-363238

sockets/11-Mar-2024-3,3702,356

static_ip/11-Mar-2024-417316

websocket/11-Mar-2024-422303

README.mdD11-Mar-20242.4 KiB2613

README.md

1# Protocols Examples
2
3Implementation of internet communication protocols and services.
4
5See the [README.md](../README.md) file in the upper level [examples](../) directory for more information about examples.
6
7## Establishing Wi-Fi or Ethernet Connection
8
9### About the `example_connect()` Function
10
11Protocols examples use a simple helper function, `example_connect()`, to establish Wi-Fi and/or Ethernet connection. This function is implemented in [examples/common_components/protocol_examples/common/connect.c](../common_components/protocol_examples_common/connect.c), and has a very simple behavior: block until connection is established and IP address is obtained, then return. This function is used to reduce the amount of boilerplate and to keep the example code focused on the protocol or library being demonstrated.
12
13The simple `example_connect()` function does not handle timeouts, does not gracefully handle various error conditions, and is only suited for use in examples. When developing real applications, this helper function needs to be replaced with full Wi-Fi / Ethernet connection handling code. Such code can be found in [examples/wifi/getting_started/](../wifi/getting_started) and [examples/ethernet/basic/](../ethernet/basic) examples.
14
15### Configuring the Example
16
17To configure the example to use Wi-Fi, Ethernet or both connections, open the project configuration menu (`idf.py menuconfig`) and navigate to "Example Connection Configuration" menu. Select either "Wi-Fi" or "Ethernet" or both in the "Connect using" choice.
18
19When connecting using Wi-Fi, enter SSID and password of your Wi-Fi access point into the corresponding fields. If connecting to an open Wi-Fi network, keep the password field empty.
20
21When connecting using Ethernet, set up PHY type and configuration in the provided fields. If using Ethernet for the first time, it is recommended to start with the [Ethernet example readme](../ethernet/basic/README.md), which contains instructions for connecting and configuring the PHY. Once Ethernet example obtains IP address successfully, proceed to the protocols example and set the same configuration options.
22
23### Disabling IPv6
24
25By default, `example_connect()` function waits until Wi-Fi or Ethernet connection is established, and IPv4 address and IPv6 link-local address are obtained. In network environments where IPv6 link-local address cannot be obtained, disable "Obtain IPv6 link-local address" option found in "Example Connection Configuration" menu.
26