今天我们来学 socket 发送结构体
1. 先看要发送的结构体
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace Lin.p2p.Mo
{
/// <summary>
/// 通信消息格式
/// </summary>
[Serializable]
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct CP2PMessage
{
public sbyte nMessageTypes;
public int Value;
}
}
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
namespace Lin.p2p.Mo
{
/// <summary>
/// 通信消息格式
/// </summary>
[Serializable]
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct CP2PMessage
{
public sbyte nMessageTypes;
public int Value;
}
}
2. 请看服务端
using System;
using System.Collections.Generic;
using System.Text;
using System.Net.Sockets;
using System.Net;
using Lin.p2p;
using Lin.p2p.Mo;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// 1.创建套节字
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
// 2.填充IP
IPEndPoint ipe = new IPEndPoint(IPAddress.Any, 4321);
// 3.绑定
socket.Bind(ipe);
// 等待客户机连接
Console.WriteLine("This is a Server, host name is {0}", Dns.GetHostName());
Console.WriteLine("Waiting for a client...");
// 4.得客户机IP
IPEndPoint sender = new IPEndPoint(IPAddress.Any, 0);
EndPoint remote = (EndPoint)sender;
// 5.接收客户机数据
byte[] buffer = new byte[1024];
socket.ReceiveFrom(buffer, ref remote);
CP2PMessage msg = new CP2PMessage();
msg = (CP2PMessage)Tool.BytesToStruct(buffer, msg.GetType());
Console.WriteLine("接收的值为:{0}", msg.Value);
Console.ReadKey();
}
}
}
using System.Collections.Generic;
using System.Text;
using System.Net.Sockets;
using System.Net;
using Lin.p2p;
using Lin.p2p.Mo;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
// 1.创建套节字
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
// 2.填充IP
IPEndPoint ipe = new IPEndPoint(IPAddress.Any, 4321);
// 3.绑定
socket.Bind(ipe);
// 等待客户机连接
Console.WriteLine("This is a Server, host name is {0}", Dns.GetHostName());
Console.WriteLine("Waiting for a client...");
// 4.得客户机IP
IPEndPoint sender = new IPEndPoint(IPAddress.Any, 0);
EndPoint remote = (EndPoint)sender;
// 5.接收客户机数据
byte[] buffer = new byte[1024];
socket.ReceiveFrom(buffer, ref remote);
CP2PMessage msg = new CP2PMessage();
msg = (CP2PMessage)Tool.BytesToStruct(buffer, msg.GetType());
Console.WriteLine("接收的值为:{0}", msg.Value);
Console.ReadKey();
}
}
}