博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
最近又遇到一个RST, 一眼就看出来了!
阅读量:4141 次
发布时间:2019-05-25

本文共 299 字,大约阅读时间需要 1 分钟。

        最近又遇到一个RST问题,  一眼就看出来了!

        问题是这样的, 客户端send后, 两次recv数据, 结果, 我用的是工程封装的RECV函数(考虑了超时), 它会在每次RECV后自动close socket.  结果我二次调用RECV的时候, 总是出现错误。 看了一下网络包, 发现客户端发了一个RST,  这就很明显了, 接收缓冲区中仍有数据没取完(等第二次RECV来取), 结果第一次RECV后就关了socket, 自然, 要用RST来告知异常关闭。

        查到问题后, 修改起来就很容易了,  调用RECV的时候, 加了控制选项, 不自动关闭socket.

        幸好以前深入了解过RST, 不然就比较蛋疼了。

转载地址:http://siwti.baihongyu.com/

你可能感兴趣的文章
性能扩展问题要趁早
查看>>
MySQL-数据库、数据表结构操作(SQL)
查看>>
OpenLDAP for Windows 安装手册(2.4.26版)
查看>>
图文介绍openLDAP在windows上的安装配置
查看>>
Pentaho BI开源报表系统
查看>>
Pentaho 开发: 在eclipse中构建Pentaho BI Server工程
查看>>
JSP的内置对象及方法
查看>>
android中SharedPreferences的简单例子
查看>>
android中使用TextView来显示某个网址的内容,使用<ScrollView>来生成下拉列表框
查看>>
andorid里关于wifi的分析
查看>>
Spring MVC和Struts2的比较
查看>>
Hibernate和IBatis对比
查看>>
Spring MVC 教程,快速入门,深入分析
查看>>
Android 的source (需安装 git repo)
查看>>
Commit our mod to our own repo server
查看>>
LOCAL_PRELINK_MODULE和prelink-linux-arm.map
查看>>
Simple Guide to use the gdb tool in Android environment
查看>>
Netconsole to capture the log
查看>>
Build GingerBread on 32 bit machine.
查看>>
How to make SD Card world wide writable
查看>>