1 /* OpenThread Command Line Example
2 
3    This example code is in the Public Domain (or CC0 licensed, at your option.)
4 
5    Unless required by applicable law or agreed to in writing, this
6    software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
7    CONDITIONS OF ANY KIND, either express or implied.
8 */
9 
10 #pragma once
11 
12 #ifdef __cplusplus
13 extern "C" {
14 #endif
15 
16 /**
17  * @brief User command "tcpsockserver" process.
18  *
19  */
20 void esp_ot_process_tcp_server(void *aContext, uint8_t aArgsLength, char *aArgs[]);
21 
22 /**
23  * @brief User command "tcpsockclient" process.
24  *
25  */
26 void esp_ot_process_tcp_client(void *aContext, uint8_t aArgsLength, char *aArgs[]);
27 
28 #ifdef __cplusplus
29 }
30 #endif
31