高中生
最后登录1970-1-1
在线时间 小时
注册时间2016-2-6
|
楼主 |
发表于 2016-2-19 16:02:30
|
显示全部楼层
还是不明白啊,例程里面的回调函数有连接和释放,这个要配对我能理解,但是不用连接和释放也可以发送数据阿,只是不知道为什么?
/* Connect to the remote client */
udp_connect(upcb, addr, UDP_CLIENT_PORT);
/* Tell the client that we have accepted it */
udp_send(upcb, p);
/* free the UDP connection, so we can accept new clients */
udp_disconnect(upcb); |
|