v2 / vlib / net / unix / aasocket.c.v
17 lines · 14 sloc · 217 bytes · 32be855f657e59ec543b1fea01cce9e4427ffe93
Raw
1module unix
2
3import net as _
4
5const max_sun_path = $if windows {
6 256
7} $else {
8 // 104 for macos, 108 for linux => use the minimum
9 104
10}
11
12// Select represents a select operation
13enum Select {
14 read
15 write
16 except
17}
18