pycurl 请求存在于标头函数中吗?
在 C 中,当我想取消标头或写入函数中的下载时,请返回 -1。 在 pycurl 中,我收到此错误,
pycurl.error: invalid return value for write callback -1 17
我不知道 17 是什么意思,但我做错了什么?
in C do return -1 when i want to cancel the download in either the header or the write function. In pycurl i get this error
pycurl.error: invalid return value for write callback -1 17
I dont know what the 17 means but what am i not doing correctly?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 pycurl.c:
这意味着 Total_size 是 17 - 这可能吗? -1(结果)是回调返回的结果。
from pycurl.c:
this would mean 17 is the total_size - is this possible ? and -1 (result) is what your callback is returning.