2022-05-20 17:50:08 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								| Supported Targets | ESP32 | ESP32-S2 | ESP32-S3 | ESP32-C3 |
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								| ----------------- | ----- | -------- | -------- | -------- |
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-11-21 00:44:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								# Asio TCP echo server example
 
							 
						 
					
						
							
								
									
										
										
										
											2018-05-29 11:25:24 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-11-21 00:44:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Simple Asio TCP echo server using WiFi STA or Ethernet.
							 
						 
					
						
							
								
									
										
										
										
											2018-05-29 11:25:24 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								## Example workflow
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-11-21 00:44:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-  Wi-Fi or Ethernet connection is established, and IP address is obtained.
							 
						 
					
						
							
								
									
										
										
										
											2019-06-23 11:54:31 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-  Asio TCP server is started on port number defined through the project configuration.
							 
						 
					
						
							
								
									
										
										
										
											2018-11-21 00:44:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-  Server receives and echoes back messages transmitted from client.
							 
						 
					
						
							
								
									
										
										
										
											2018-05-29 11:25:24 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								## Running the example
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-23 11:54:31 +10: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-21 00:44:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								-  Set server port number in menuconfig, "Example configuration".
							 
						 
					
						
							
								
									
										
										
										
											2019-06-23 11:54:31 +10: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-21 00:44:31 +08: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 11:25:24 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								See the README.md file in the upper level 'examples' directory for more information about examples.