如何测试中断的 POST 处理
我正在尝试重现由中断的多部分 POST 引入的错误。因此,我想做一些类似的事情
curl -F 'item_count=8' -A 'Agent/4.0' http://tld/post/uri
,但在发送数据时中断请求。
任意Ctrl+C显然不是最优的。
有支持该功能的工具吗(手动低级套接字播放除外)?
I am trying to reproduce a bug that is introduced by interrupted multipart POST. Thus, I'd like to do something along the lines of
curl -F 'item_count=8' -A 'Agent/4.0' http://tld/post/uri
but interrupt the request when data are send.
Arbitrary Ctrl+C is obviously not optimal.
Any tools that support that (except manual low-level socket play)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
生成一个线程并几乎立即从父线程杀死它?
Spawn a thread and kill it almost immediately from the parent?