标签: curl streaming libcurl
我想创建一个从客户端到服务器的流连接。客户端将一次连接到服务器,并继续侦听服务器的响应。客户端请求时可能发生流拆卸。
示例:
继续监听对服务器的响应。像while(streamOK){ //execute function when response arrives}
while(streamOK){ //execute function when response arrives}
CloseStream()
拆除连接。
我已经经历过libcurl,但是除了rtsp之外,找不到清晰的流式连接实现。