websocket-server – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5  
6 namespace WebSockets.Common
7 {
8 public enum WebSocketCloseCode
9 {
10 Normal = 1000,
11 GoingAway = 1001,
12 ProtocolError = 1002,
13 DataTypeNotSupported = 1003,
14 Reserverd = 1004,
15 ReserverdNoStatusCode = 1005,
16 ReserverdAbnormalClosure = 1006,
17 MismatchDataNonUTF8 = 1007,
18 ViolationOfPolicy = 1008,
19 MessageTooLarge = 1009,
20 EnpointExpectsExtension = 1010,
21 ServerUnexpectedCondition = 1011,
22 ServerRegectTlsHandshake = 1015,
23 }
24 }