forked from MidLevel/MLAPI.WebSockets
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNativeWebSocketServer.cs
More file actions
92 lines (72 loc) · 2.48 KB
/
NativeWebSocketServer.cs
File metadata and controls
92 lines (72 loc) · 2.48 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#if !JSLIB
using System;
using System.Net;
using System.Security.Cryptography.X509Certificates;
using WebSocketSharp.Server;
namespace MLAPI.WebSockets
{
public class NativeWebSocketServer
{
private static WebSocketServer webSocketServer;
private static bool isStarted;
public static NativeWebSocketServer Instance = new NativeWebSocketServer();
private NativeWebSocketServer()
{
}
public void Start(IPAddress address, int port, string connectionPath = "/mlapi-connection", X509Certificate2 certificate = null)
{
if (isStarted)
{
throw new InvalidOperationException("Socket already started");
}
isStarted = true;
webSocketServer = new WebSocketServer(address, port, certificate != null);
webSocketServer.SslConfiguration.ServerCertificate = certificate;
webSocketServer.AddWebSocketService<WebSocketServerConnectionBehaviour>(connectionPath);
webSocketServer.Start();
}
public void Close(ulong id, DisconnectCode code = DisconnectCode.Normal, string reason = null)
{
if (!isStarted)
{
throw new InvalidOperationException("Socket not started");
}
WebSocketServerConnectionBehaviour.Close(id, code, reason);
}
public WebSocketState GetState(ulong id)
{
if (!isStarted)
{
throw new InvalidOperationException("Socket not started");
}
return WebSocketServerConnectionBehaviour.GetState(id);
}
public void Send(ulong id, ArraySegment<byte> payload)
{
if (!isStarted)
{
throw new InvalidOperationException("Socket not started");
}
WebSocketServerConnectionBehaviour.Send(id, payload);
}
public void Shutdown()
{
if (!isStarted)
{
throw new InvalidOperationException("Socket not started");
}
isStarted = false;
WebSocketServerConnectionBehaviour.Reset();
webSocketServer.Stop();
}
public WebSocketServerEvent Poll()
{
if (!isStarted)
{
throw new InvalidOperationException("Socket not started");
}
return WebSocketServerConnectionBehaviour.Poll();
}
}
}
#endif