longxinH / xhprof-apm

Xhprof APM
Apache License 2.0
36 stars 10 forks source link

curl post 大包100 continue问题 #4

Closed reynaldliu closed 6 years ago

reynaldliu commented 6 years ago

headers = curl_slist_append(headers, "User-Agent: Xhprof-apm"); 1774行后面需要添加 headers = curl_slist_append(headers, "Expect:");

小于1000ms可能还需要个signal设置。

防止有些服务端不能很好处理http 1.1 post 大包返回100 continue导致的拆包或请求挂住。 觉得能不用curl最好不用curl。封装不好容易搞死客户端。 http://www.mamicode.com/info-detail-1555158.html