-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathServerFile.cs
73 lines (59 loc) · 1.9 KB
/
ServerFile.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
using System;
using System.Net;
using System.Net.Sockets;
namespace UdpAsyncServer
{
class ServerFile
{
static void Main(string[] args)
{
Network network = new Network();
network.StartRec();
Console.ReadLine();
}
}
class Network
{
Socket socket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
IPEndPoint endPoint = new IPEndPoint(IPAddress.Any, 23000);
public void StartRec()
{
socket.EnableBroadcast = true;
try
{
SocketAsyncEventArgs socketAsync = new SocketAsyncEventArgs();
socketAsync.RemoteEndPoint = new IPEndPoint(IPAddress.Any, 23000);
socketAsync.SetBuffer(new byte[2], 0, 2);
int retryCount = 0;
if (!socket.IsBound)
{
socket.Bind(endPoint);
}
socketAsync.Completed += ReceiveCompletedCallback;
if (!socket.ReceiveAsync(socketAsync))
{
Console.WriteLine("there was an error, oh no!\n\n" + socketAsync.SocketError);
if (retryCount++ >= 10)
{
return;
}
else
{
StartRec();
}
}
}
catch (Exception excp)
{
Console.WriteLine(excp);
}
}
private void ReceiveCompletedCallback(object sender, SocketAsyncEventArgs e)
{
Console.WriteLine(e.RemoteEndPoint + " ------ " + e.BytesTransferred);
Array.Clear(e.Buffer, 0, e.Count);
//start receiving data again
(sender as Socket).ReceiveFromAsync(e);
}
}
}