
socket
jjdujiang
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
TCP/IP协议、报文格式、三次握手协议
强调内容桥接网络,手动选择桥接到网卡。第一次:客户端-服务器,SYN包, seq = j。 第二次:服务器-客户端,SYN、ACK包,ack = 客户端的seq + 1,seq = k。 第三次:客户端-服务器,ACK包, ack = 服务端的seq + 1,seq累加。数据链路层头结构 48位, 6个字节,目标MAC物理地址, 48位, 6个字节,源MAC物理地址,原创 2016-03-17 15:19:02 · 543 阅读 · 0 评论 -
netstat
netstat -ano | findstr 123原创 2016-03-22 10:31:53 · 576 阅读 · 0 评论 -
ntohs, ntohl, htons,htonl
ntohs =net to host short int 16位 htons=host to net short int 16位 ntohs =net to host long int 32位 htonl=host to net long int 32位原创 2016-05-20 17:08:33 · 308 阅读 · 0 评论 -
wireshark过滤规则
记录一下,方便以后使用 ip.dst==192.168.0.104 and ip.src==192.168.0.161 and tcp.port==3816原创 2016-11-29 15:32:07 · 312 阅读 · 0 评论