aboutsummaryrefslogtreecommitdiff
path: root/core/net/errors.odin
blob: 4853327b01ca964f3f2df209bcb07b077d02825d (plain)
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
package net

/*
Retrieve a platform specific error code, for when the categorized cross-platform errors are not enough.

Platforms specific returns:
- Darwin:  `posix.Errno`          (`core:sys/posix`)
- Linux:   `linux.Errno`          (`core:sys/linux`)
- FreeBSD: `freebsd.Errno`        (`core:sys/freebsd`)
- Windows: `windows.System_Error` (`core:sys/windows`)
*/
@(require_results)
last_platform_error :: proc() -> i32 {
	return _last_platform_error()
}

/*
Retrieve a stringified version of the last platform error.
*/
@(require_results)
last_platform_error_string :: proc() -> string {
	return _last_platform_error_string()
}

set_last_platform_error :: proc(err: i32) {
	_set_last_platform_error(err)
}

Create_Socket_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid/unsupported family or protocol.
	Invalid_Argument,
	// The user has no permission to create a socket of this type and/or protocol.
	Insufficient_Permissions,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Dial_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid endpoint and/or options.	
	Invalid_Argument,
	// An attempt was made to connect to a broadcast socket on a socket that doesn't support it.
	Broadcast_Not_Supported,
	// The socket is already connected.
	Already_Connected,
	// The socket is already in the progress of making a connection.
	Already_Connecting,
	// The address is already in use.
	Address_In_Use,
	// Could not reach the remote host.
	Host_Unreachable,
	// The remote host refused the connection or isn't listening.
	Refused,
	// The connection was reset by the remote host.
	Reset,
	// Timed out before making a connection.
	Timeout,
	// Non-blocking socket that would need to block waiting to connect.
	Would_Block,
	// Interrupted by a signal or other method of cancellation like WSACancelBlockingCall on Windows.
	Interrupted,
	// Endpoint given without a port, which is required.
	Port_Required,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Bind_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid socket or endpoint, or invalid combination of the two.
	Invalid_Argument,
	// The socket is already bound to an address.
	Already_Bound,
	// The address is protected and the current user has insufficient permissions to access it.
	Insufficient_Permissions_For_Address,
	// The address is already in use.
	Address_In_Use,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Listen_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// The socket or backlog is invalid.
	Invalid_Argument,
	// The socket is valid, but does not support listening.
	Unsupported_Socket,
	// The socket is already connected.
	Already_Connected,
	// The address is already in use.
	Address_In_Use,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Accept_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid socket, or options.
	Invalid_Argument,
	// The given socket does not support accepting connections.
	Unsupported_Socket,
	// accept called on a socket which is not listening.
	Not_Listening,
	// A connection arrived but was closed while in the listen queue.
	Aborted,
	// Timed out before being able to accept a connection.
	Timeout,
	// Non-blocking socket that would need to block waiting for a connection.
	Would_Block,
	// Interrupted by a signal or other method of cancellation like WSACancelBlockingCall on Windows.
	Interrupted,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

TCP_Recv_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid socket or buffer given.
	Invalid_Argument,
	// The socket is not connected.
	Not_Connected,
	// Connection was closed/broken/shutdown while receiving data.
	Connection_Closed,
	// Timed out before being able to receive any data.
	Timeout,
	// Non-blocking socket that would need to block waiting on data.
	Would_Block,
	// Interrupted by a signal or other method of cancellation like WSACancelBlockingCall on Windows.
	Interrupted,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

UDP_Recv_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid socket or buffer given.
	Invalid_Argument,
	// "Connection" was refused by remote, or closed/broken/shutdown while receiving data.
	Connection_Refused,
	// Timed out before being able to receive any data.
	Timeout,
	// Non-blocking socket that would need to block waiting on data.
	Would_Block,
	// Interrupted by a signal or other method of cancellation like WSACancelBlockingCall on Windows.
	Interrupted,
	// Linux and UDP only: indicates the buffer was too small to receive all data, and the excess is truncated and discarded.
	Excess_Truncated,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

TCP_Send_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid socket or buffer given.
	Invalid_Argument,
	// Connection was closed/broken/shutdown while receiving data.
	Connection_Closed,
	// The socket is not connected.
	Not_Connected,
	// Could not reach the remote host.
	Host_Unreachable,
	// Timed out before being able to send any data.
	Timeout,
	// Non-blocking socket that would need to block waiting on the remote to be able to receive the data.
	Would_Block,
	// Interrupted by a signal or other method of cancellation like WSACancelBlockingCall on Windows.
	Interrupted,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

UDP_Send_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Invalid socket or buffer given.
	Invalid_Argument,
	// Could not reach the remote host.
	Host_Unreachable,
	// "Connection" was refused by remote, or closed/broken/shutdown while sending data.
	Connection_Refused,
	// Timed out before being able to send any data.
	Timeout,
	// Non-blocking socket that would need to block waiting on the remote to be able to receive the data.
	Would_Block,
	// Interrupted by a signal or other method of cancellation like WSACancelBlockingCall on Windows.
	Interrupted,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Shutdown_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Socket is invalid or not connected, or the manner given is invalid.
	Invalid_Argument,
	// Connection was closed/aborted/shutdown.
	Connection_Closed,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Socket_Info_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Socket is invalid or not connected, or the manner given is invalid.
	Invalid_Argument,
	// The socket is valid, but unsupported by this opperation.
	Unsupported_Socket,
	// Connection was closed/aborted/shutdown.
	Connection_Closed,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Socket_Option_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Not enough space in internal tables/buffers to create a new socket, or an unsupported protocol is given.
	Insufficient_Resources,
	// Socket is invalid, not connected, or the connection has been closed/reset/shutdown.
	Invalid_Socket,
	// Unknown or unsupported option for the socket.
	Invalid_Option,
	// Invalid level or value.
	Invalid_Value,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}

Set_Blocking_Error :: enum i32 {
	None,
	// No network connection, or the network stack is not initialized.
	Network_Unreachable,
	// Socket is invalid.
	Invalid_Argument,

	// An error unable to be categorized in above categories, `last_platform_error` may have more info.
	Unknown,
}