forked from andremussche/DelphiWebsockets
-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Journeyman.WebSocket.Consts.pas
144 lines (122 loc) · 5.57 KB
/
Journeyman.WebSocket.Consts.pas
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
unit Journeyman.WebSocket.Consts;
interface
uses
{$IF DEFINED(MSWINDOWS)}
IdWinSock2;
{$ELSEIF DEFINED(POSIX)}
Posix.SysSocket;
{$ENDIF}
const
SConnection: string = 'Connection';
SHTTPCookieHeader: string = 'Cookie';
SHTTPHostHeader: string = 'Host';
SHTTPOriginHeader: string = 'Origin';
SKeepAlive: string = 'keep-alive';
SNoCache: string = 'no-cache';
SServer: string = 'Server';
SSwitchingProtocols: string = 'Switching Protocols';
SUpgrade: string = 'Upgrade';
SWebSocket: string = 'websocket';
SWebSocketAccept: string = 'Sec-WebSocket-Accept';
SWebSocketExtensions: string = 'Sec-WebSocket-Extensions';
SWebSocketGUID: string = '258EAFA5-E914-47DA-95CA-C5AB0DC85B11';
SWebSocketKey: string = 'Sec-WebSocket-Key';
SWebSocketProtocol: string = 'Sec-WebSocket-Protocol';
SWebSocketVersion: string = 'Sec-WebSocket-Version';
SPerMessageDeflate: string = 'permessage-deflate';
SClientMaxWindowBits: string = 'client_max_window_bits';
CSwitchingProtocols: Int16 = 101;
CNoContent: Int16 = 204;
MSG_OOB = $01; // Process out-of-band data.
type
TClientMaxWindowBits = record
const
Disabled = -1;
MinValue = 8;
MaxValue = 15;
end;
TServerMaxWindowBits = record
const
Disabled = -1;
MinValue = 8;
MaxValue = 15;
end;
const
{$IF DEFINED(MSWINDOWS)}
SIZE_INTEGER = IdWinSock2.SIZE_INTEGER;
{$ELSEIF DEFINED(ANDROID)}
SIZE_INTEGER = SizeOf(Integer);
{$ENDIF}
SO_ERROR = $1007; // get error status and clear
SOCK_NONBLOCK = $800;
// close frame codes
/// <summary> 1000 indicates a normal closure, meaning that the purpose for
/// which the connection was established has been fulfilled.</summary>
C_FrameClose_Normal = 1000;
/// <summary> 1001 indicates that an endpoint is "going away", such as a server
/// going down or a browser having navigated away from a page.</summary>
C_FrameClose_GoingAway = 1001;
/// <summary> 1002 indicates that an endpoint is terminating the connection due
/// to a protocol error.</summary>
C_FrameClose_ProtocolError = 1002;
/// <summary> 1003 indicates that an endpoint is terminating the connection
/// because it has received a type of data it cannot accept (e.g., an
/// endpoint that understands only text data MAY send this if it
/// receives a binary message).</summary>
C_FrameClose_UnhandledDataType = 1003;
/// <summary> Reserved. The specific meaning might be defined in the future.</summary>
C_FrameClose_Reserved = 1004;
/// <summary> 1005 is a reserved value and MUST NOT be set as a status code in a
/// Close control frame by an endpoint. It is designated for use in
/// applications expecting a status code to indicate that no status
/// code was actually present.</summary>
C_FrameClose_ReservedNoStatus = 1005;
/// <summary> 1006 is a reserved value and MUST NOT be set as a status code in a
/// Close control frame by an endpoint. It is designated for use in
/// applications expecting a status code to indicate that the
/// connection was closed abnormally, e.g., without sending or
/// receiving a Close control frame.</summary>
C_FrameClose_ReservedAbnormal = 1006;
/// <summary> 1007 indicates that an endpoint is terminating the connection
/// because it has received data within a message that was not
/// consistent with the type of the message (e.g., non-UTF-8 [RFC3629]
/// data within a text message).</summary>
C_FrameClose_InconsistentData = 1007;
/// <summary> 1008 indicates that an endpoint is terminating the connection
/// because it has received a message that violates its policy. This
/// is a generic status code that can be returned when there is no
/// other more suitable status code (e.g., 1003 or 1009) or if there
/// is a need to hide specific details about the policy.</summary>
C_FrameClose_PolicyError = 1008;
/// <summary> 1009 indicates that an endpoint is terminating the connection
/// because it has received a message that is too big for it to process.</summary>
C_FrameClose_ToBigMessage = 1009;
/// <summary> 1010 indicates that an endpoint (client) is terminating the
/// connection because it has expected the server to negotiate one or
/// more extension, but the server didn't return them in the response
/// message of the WebSocket handshake. The list of extensions that
/// are needed SHOULD appear in the /reason/ part of the Close frame.
/// Note that this status code is not used by the server, because it
/// can fail the WebSocket handshake instead.</summary>
C_FrameClose_MissingExtenstion = 1010;
/// <summary> 1011 indicates that a server is terminating the connection because
/// it encountered an unexpected condition that prevented it from
/// fulfilling the request.</summary>
C_FrameClose_UnExpectedError = 1011;
/// <summary>1015 is a reserved value and MUST NOT be set as a status code in a
/// Close control frame by an endpoint. It is designated for use in
/// applications expecting a status code to indicate that the
/// connection was closed due to a failure to perform a TLS handshake
/// (e.g., the server certificate can't be verified).</summary>
C_FrameClose_ReservedTLSError = 1015;
// frame codes
C_FrameCode_Continuation = 0;
C_FrameCode_Text = 1;
C_FrameCode_Binary = 2;
// 3-7 are reserved for further non-control frames
C_FrameCode_Close = 8;
C_FrameCode_Ping = 9;
C_FrameCode_Pong = 10 {A};
// B-F are reserved for further control frames
implementation
end.