要求 (サイズは 18 バイト) を受け取り、クライアントに何か (サイズは 7 バイト) を送信するコンソール アプリケーションを作成しようとしています。私は一生、これを機能させることができないようです。データは正常に受信できますが、送り返すデータはクライアントに届きません。
これが私のコードです
static void Main(string[] args)
{
// Data to return
byte[] ret = { 0xfe, 0xfd, 0x09, 0x00, 0x00, 0x00, 0x00 };
// tell the user that we are waiting
Console.WriteLine("Waiting for UDP Connection...");
// Create a new socket to listen from
Socket Skt = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
Skt.EnableBroadcast = true;
Skt.Bind(new IPEndPoint(IPAddress.Loopback, 27900));
try
{
// Blocks until a message returns on this socket from a remote host.
Byte[] receiveBytes = new byte[48];
IPEndPoint sender = new IPEndPoint(IPAddress.Any, 0);
EndPoint senderRemote = (EndPoint)sender;
Skt.ReceiveFrom(receiveBytes, ref senderRemote);
string returnData = Encoding.UTF8.GetString(receiveBytes).Trim();
Console.WriteLine("This is the message you received " + returnData.ToString());
// Sent return data
int sent = Skt.SendTo(ret, senderRemote);
Console.WriteLine("Sent {0} bytes back", sent);
Skt.Close();
}
catch (Exception e)
{
Console.WriteLine(e.ToString());
}
Console.ReadLine();
}
誰か私にいくつかの指針を教えてください。