-
-
Notifications
You must be signed in to change notification settings - Fork 94
Expand file tree
/
Copy pathsettings.json
More file actions
78 lines (78 loc) · 2.42 KB
/
settings.json
File metadata and controls
78 lines (78 loc) · 2.42 KB
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
{
"settings": [
{
"name": "net_splitrate",
"group": "network.splits",
"type": "integer",
"condition": {
"type": "range",
"value": ">0"
},
"description": "The number of splits to do for large packets per frame.",
"values": {
"options": [
{
"value": 1,
"description": "The default and lowest split rate to reduce CPU load from the networking system."
},
{
"value": 2,
"description": "An increased split rate to reduce choke when splitting up large packets."
},
{
"value": 4,
"description": "An intensively high split rate to reduce choke even more when splitting up large packets."
}
]
}
},
{
"name": "net_queued_packet_thread",
"group": "network.splits",
"type": "boolean",
"description": "Queue split packets on a separate thread with a set time interval.",
"values": {
"options": [
{
"value": false,
"description": "Disables the use of the queued packet thread. Recommended for Linux users along with the -NoQueuedPacketThread launch option."
},
{
"value": true,
"description": "Enables the use of the queued packet thread. Recommended for Windows users to avoid a packet sending bug in Windows."
}
]
}
},
{
"name": "net_maxpacketdrop",
"group": "network.timeouts",
"type": "integer",
"condition": {
"type": "range",
"value": ">0"
},
"description": "The threshold of packet drops before detecting a disconnection from the server.",
"values": {
"options": [
{
"value": 1000,
"description": "Use a faster packet drop threshold to be more strict with packet drops and disconnect sooner."
}
{
"value": 5000,
"description": "The default packet drop threshold which is a good balance between tolerating packet drops and disconnecting soon enough."
},
{
"value": 10000,
"description": "A high packet drop threshold to allow for very unreliable networks to attempt to continue a connection with a server."
}
]
}
},
{
"name": "cl_timeout",
"group": "network.timeouts"
}
]
}