2018-11-20 16:44:31 +00:00
# Asio TCP echo server example
2018-05-29 09:25:24 +00:00
2018-11-20 16:44:31 +00:00
Simple Asio TCP echo server using WiFi STA or Ethernet.
2018-05-29 09:25:24 +00:00
## Example workflow
2018-11-20 16:44:31 +00:00
- Wi-Fi or Ethernet connection is established, and IP address is obtained.
2019-06-23 01:54:31 +00:00
- Asio TCP server is started on port number defined through the project configuration.
2018-11-20 16:44:31 +00:00
- Server receives and echoes back messages transmitted from client.
2018-05-29 09:25:24 +00:00
## Running the example
2019-06-23 01:54:31 +00:00
- Open the project configuration menu (`idf.py menuconfig`) to configure Wi-Fi or Ethernet. See "Establishing Wi-Fi or Ethernet Connection" section in [examples/protocols/README.md ](../../README.md ) for more details.
2018-11-20 16:44:31 +00:00
- Set server port number in menuconfig, "Example configuration".
2019-06-23 01:54:31 +00:00
- Run `idf.py -p PORT flash monitor` to build and upload the example to your board and connect to it's serial terminal.
2018-11-20 16:44:31 +00:00
- Wait for the board to connect to WiFi or Ethernet (note the IP address).
- You can now send a TCP message and check it is repeated, for example using netcat `nc IP PORT` .
2018-05-29 09:25:24 +00:00
See the README.md file in the upper level 'examples' directory for more information about examples.