网络编程
feijinxinsi
这个作者很懒,什么都没留下…
展开
-
利用wireshak确定rtsp访问地址
直接上图:原创 2016-05-26 22:24:10 · 197 阅读 · 0 评论 -
IIlustration of the IPv4 Header
version: the version of ip service, For IPv4, its value is 4, for IPV6, its value is 6.header length: the length of ip header, the maximum value is 60 because of using 4 bits representing the...原创 2015-10-25 14:51:23 · 121 阅读 · 0 评论 -
linux下tcp服务器简单测试脚本
#!/bin/bashmyvar=1while [ $myvar -le 800 ]do echo $myvar #echo -n "------------" | nc localhost 9999 &nc localhost 9999 < post&sleep 0.02 myvar=$(( $myvar + 1...原创 2016-09-22 19:59:36 · 578 阅读 · 0 评论