#include <stdlib.h>
#include <stdio.h>
#include <winsock2.h> //加入WinSock的头文件
#include <WS2TCPIP.h> //设置IP_HDRINCL需要
#include <time.h>
#pragma comment(lib,"Ws2_32.lib") //加入库函数
#include <iostream>
using namespace std;
typedef struct //定义IP首部
{
unsigned char h_verlen; //4位首部长度,4位IP版本号 无符号范围较广在正值
unsigned char tos; //8位服务类型TOS
......................
阅读全部 | 2015年4月17日 20:35