基本信息
源码名称:row socket 网络监听
源码大小:0.08M
文件格式:.zip
开发语言:C#
更新时间:2014-04-15
友情提示:(无需注册或充值,赞助后即可获取资源下载链接)
嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元×
微信扫码支付:2 元
×
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
源码介绍
unsafe private void Receive(byte[] buf, int len) { byte temp_protocol = 0; uint temp_version = 0; uint temp_ip_srcaddr = 0; uint temp_ip_destaddr = 0; short temp_srcport = 0; short temp_dstport = 0; IPAddress temp_ip; PacketArrivedEventArgs e = new PacketArrivedEventArgs(); fixed (byte* fixed_buf = buf) { IPHeader* head = (IPHeader*)fixed_buf;//把数据流整合为IPHeader结构 e.HeaderLength = (uint)(head->ip_verlen & 0x0F) << 2; temp_protocol = head->ip_protocol; switch (temp_protocol) { case 1: e.Protocol = "ICMP"; break; case 2: e.Protocol = "IGMP"; break; case 6: e.Protocol = "TCP"; break; case 17: e.Protocol = "UDP"; break; default: e.Protocol = "UNKNOWN"; break; } temp_version = (uint)(head->ip_verlen & 0xF0) >> 4;//提取IP协议版本 e.IPVersion = temp_version.ToString(); temp_ip_srcaddr = head->ip_srcaddr; temp_ip_destaddr = head->ip_destaddr; temp_ip = new IPAddress(temp_ip_srcaddr); e.OriginationAddress = temp_ip.ToString(); temp_ip = new IPAddress(temp_ip_destaddr); e.DestinationAddress = temp_ip.ToString(); temp_srcport = *(short*)&fixed_buf[e.HeaderLength]; temp_dstport = *(short*)&fixed_buf[e.HeaderLength 2]; e.OriginationPort = IPAddress.NetworkToHostOrder(temp_srcport).ToString(); e.DestinationPort = IPAddress.NetworkToHostOrder(temp_dstport).ToString(); e.PacketLength = (uint)len; e.MessageLength = (uint)len-e.HeaderLength; e.ReceiveBuffer = buf; Array.Copy(buf, 0, e.IPHeaderBuffer, 0, (int)e.HeaderLength); Array.Copy(buf, (int)e.HeaderLength, e.MessageBuffer, 0, (int)e.MessageLength); } OnPacketArrival(e); }