-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmeson_options.txt
59 lines (51 loc) · 948 Bytes
/
meson_options.txt
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
option('lwip_debug',
type: 'feature',
value: 'auto',
description: 'Enable lwIP debug infrastructure',
)
option('ipv4',
type: 'feature',
value: 'auto',
description: 'Enable IPv4 support',
)
option('ipv6',
type: 'feature',
value: 'auto',
description: 'Enable IPv6 support',
)
option('dns',
type: 'feature',
value: 'auto',
description: 'Enable DNS support',
)
option('arp',
type: 'feature',
value: 'auto',
description: 'Enable ARP support',
)
option('ethernet',
type: 'feature',
value: 'auto',
description: 'Enable Ethernet support',
)
option('tcp_mss',
type: 'integer',
min: 88,
max: 16382,
value: 1024,
description: 'TCP Maximum Segment Size',
)
option('tcp_snd_buf',
type: 'integer',
min: 176,
max: 65535,
value: 2048,
description: 'TCP sender buffer space (bytes)',
)
option('tcp_wnd',
type: 'integer',
min: 176,
max: 65535,
value: 20480,
description: 'TCP window size',
)