2018-11-20 16:44:31 +00:00
# Asio chat server example
2018-05-29 09:25:24 +00:00
2018-11-20 16:44:31 +00:00
Simple Asio chat 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 chat server is started on port number defined through the project configuration.
2018-11-20 16:44:31 +00:00
- Chat server echoes a message (received from any client) to all connected clients.
2018-05-29 09:25:24 +00:00
## Running the example
2019-06-23 01:54:31 +00:00
- Open 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).
- Connect to the server using multiple clients, for example using any option below.
2018-05-29 09:25:24 +00:00
- build and run asi chat client on your host machine
- run chat_client asio example on ESP platform
- since chat message consist of ascii size and message, it is possible to
netcat `nc IP PORT` and type for example ` 4ABC<CR>` to transmit 'ABC\n'
See the README.md file in the upper level 'examples' directory for more information about examples.