forked from kerryjiang/SuperWebSocket
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
21 lines (21 loc) · 656 Bytes
/
App.config
File metadata and controls
21 lines (21 loc) · 656 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<configSections>
<section name="superSocket" type="SuperSocket.SocketEngine.Configuration.SocketServiceConfig, SuperSocket.SocketEngine"/>
</configSections>
<appSettings>
<add key="ServiceName" value="SuperWebSocket"/>
</appSettings>
<superSocket>
<servers>
<server name="SuperWebSocket"
serverTypeName="SuperWebSocket"
ip="Any" port="2013">
</server>
</servers>
<serverTypes>
<add name="SuperWebSocket"
type="SuperWebSocket.WebSocketServer, SuperWebSocket" />
</serverTypes>
</superSocket>
</configuration>