
计算机网络
文章平均质量分 78
进击的诺基亚
有过多次项目开发经验,并且担任项目负责人,能够灵活的将学到的知识应用在工程化的开发中,能够熟练的使用git进行项目的管理,有很好的编程习惯和团队合作意识。
展开
-
tcpip数据包编码解析(chunk and gzip)
tcpip数据包编码解析(chunk and gzip)做tcpip协议栈数据包重组时遇到一些编码问题,主要是chunk和gzip编码。 先看chunk:RFC2616中对Chunked的定义:Chunked-Body = *chunklast-chunktrailerCRLFchunk = chunk-size [ chunk-extension ]原创 2014-08-08 22:50:39 · 1303 阅读 · 0 评论 -
离线抓取开心网和墨迹天气数据(pcap包,linux平台)
#include #include #include #include #include #include //链路层数据包typedef struct { u_char DestMac[6]; u_char SrcMac[6]; u_char Etype[2];}ETHHEADER;//IPtypedef struct { int heade原创 2014-08-25 01:48:58 · 1054 阅读 · 0 评论 -
基于C语言的windows下的web服务器
#include #include #include #pragma comment(lib,"ws2_32.lib")#define SERVER_PORT 5028 #define HOSTLEN 256 #define BACKLOG 10 int sendall(int s, char *buf, int *len)原创 2015-04-23 15:41:06 · 1864 阅读 · 6 评论