2019-09-30 17:11:53 +08:00
|
|
|
## tk\_iostream\_udp\_t
|
|
|
|
### 概述
|
|
|
|
![image](images/tk_iostream_udp_t_0.png)
|
|
|
|
|
2019-11-15 16:16:05 +08:00
|
|
|
基于UDP实现的输入输出流。
|
2019-09-30 17:11:53 +08:00
|
|
|
----------------------------------
|
|
|
|
### 函数
|
|
|
|
<p id="tk_iostream_udp_t_methods">
|
|
|
|
|
|
|
|
| 函数名称 | 说明 |
|
|
|
|
| -------- | ------------ |
|
2019-11-15 11:33:43 +08:00
|
|
|
| <a href="#tk_iostream_udp_t_tk_iostream_udp_create">tk\_iostream\_udp\_create</a> | 创建iostream对象(客户端)。 |
|
|
|
|
| <a href="#tk_iostream_udp_t_tk_iostream_udp_create_client">tk\_iostream\_udp\_create\_client</a> | 创建iostream对象(客户端)。 |
|
2022-12-05 12:10:53 +08:00
|
|
|
| <a href="#tk_iostream_udp_t_tk_iostream_udp_create_client_ex">tk\_iostream\_udp\_create\_client\_ex</a> | 创建iostream对象(客户端)。 |
|
2019-10-09 10:16:54 +08:00
|
|
|
#### tk\_iostream\_udp\_create 函数
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
> <p id="tk_iostream_udp_t_tk_iostream_udp_create">创建iostream对象(客户端)。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
2019-10-09 10:16:54 +08:00
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
```
|
|
|
|
tk_iostream_t* tk_iostream_udp_create (int sock);
|
|
|
|
```
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
| 返回值 | tk\_iostream\_t* | 返回iostream对象。 |
|
|
|
|
| sock | int | socket |
|
2019-09-30 17:11:53 +08:00
|
|
|
#### tk\_iostream\_udp\_create\_client 函数
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
2019-11-15 11:33:43 +08:00
|
|
|
> <p id="tk_iostream_udp_t_tk_iostream_udp_create_client">创建iostream对象(客户端)。
|
2019-10-16 09:02:32 +08:00
|
|
|
|
2019-09-30 17:11:53 +08:00
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
```
|
|
|
|
tk_iostream_t* tk_iostream_udp_create_client (const char* host, int port);
|
|
|
|
```
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
| 返回值 | tk\_iostream\_t* | 返回iostream对象。 |
|
|
|
|
| host | const char* | 服务器地址。 |
|
2022-12-05 12:10:53 +08:00
|
|
|
| port | int | 服务器端口。 |
|
|
|
|
#### tk\_iostream\_udp\_create\_client\_ex 函数
|
|
|
|
-----------------------
|
|
|
|
|
|
|
|
* 函数功能:
|
|
|
|
|
|
|
|
> <p id="tk_iostream_udp_t_tk_iostream_udp_create_client_ex">创建iostream对象(客户端)。
|
|
|
|
|
|
|
|
* 函数原型:
|
|
|
|
|
|
|
|
```
|
|
|
|
tk_iostream_t* tk_iostream_udp_create_client_ex (const char* host, int port, const char* local_ip, int local_port);
|
|
|
|
```
|
|
|
|
|
|
|
|
* 参数说明:
|
|
|
|
|
|
|
|
| 参数 | 类型 | 说明 |
|
|
|
|
| -------- | ----- | --------- |
|
|
|
|
| 返回值 | tk\_iostream\_t* | 返回iostream对象。 |
|
|
|
|
| host | const char* | 服务器地址。 |
|
|
|
|
| port | int | 服务器端口。 |
|
|
|
|
| local\_ip | const char* | 本地IP地址(为NULL时自动绑定)。 |
|
|
|
|
| local\_port | int | 本地端口。 |
|