Skip to content

Commit 7e0958b

Browse files
committedOct 19, 2022
Update documentation
1 parent 6a26737 commit 7e0958b

File tree

4 files changed

+43
-1
lines changed

4 files changed

+43
-1
lines changed
 

‎constant/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package constant
22

3-
var Version = "1.1-beta9"
3+
var Version = "1.1-beta10"

‎docs/changelog.md

+28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
#### 1.1-beta10
2+
3+
* Add [sniff_timeout](/configuration/shared/listen#sniff_timeout) listen option
4+
* Add [custom route](/configuration/inbound/tun#inet4_route_address) support for tun **1**
5+
* Fix interface monitor
6+
* Fix websocket headroom
7+
* Fix uTLS handshake
8+
* Fix ssh outbound
9+
* Fix sniff fragmented quic client hello
10+
* Fix DF for hysteria
11+
* Fix naive overflow
12+
* Check destination before udp connect
13+
* Update uTLS to v1.1.5
14+
* Update tfo-go to v2.0.2
15+
* Update fsnotify to v1.6.0
16+
* Update grpc to v1.50.1
17+
18+
*1*:
19+
20+
The `strict_route` on windows is removed.
21+
22+
#### 1.0.6
23+
24+
* Fix ssh outbound
25+
* Fix sniff fragmented quic client hello
26+
* Fix naive overflow
27+
* Check destination before udp connect
28+
129
#### 1.1-beta9
230

331
* Fix windows route **1**

‎docs/configuration/shared/listen.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"udp_fragment": false,
99
"sniff": false,
1010
"sniff_override_destination": false,
11+
"sniff_timeout": "300ms",
1112
"domain_strategy": "prefer_ipv6",
1213
"udp_timeout": 300,
1314
"proxy_protocol": false,
@@ -57,6 +58,12 @@ Override the connection destination address with the sniffed domain.
5758

5859
If the domain name is invalid (like tor), this will not work.
5960

61+
#### sniff_timeout
62+
63+
Timeout for sniffing.
64+
65+
300ms is used by default.
66+
6067
#### domain_strategy
6168

6269
One of `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`.

‎docs/configuration/shared/listen.zh.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"udp_fragment": false,
99
"sniff": false,
1010
"sniff_override_destination": false,
11+
"sniff_timeout": "300ms",
1112
"domain_strategy": "prefer_ipv6",
1213
"udp_timeout": 300,
1314
"proxy_protocol": false,
@@ -58,6 +59,12 @@
5859

5960
如果域名无效(如 Tor),将不生效。
6061

62+
#### sniff_timeout
63+
64+
探测超时时间。
65+
66+
默认使用 300ms。
67+
6168
#### domain_strategy
6269

6370
可选值: `prefer_ipv4` `prefer_ipv6` `ipv4_only` `ipv6_only`

0 commit comments

Comments
 (0)
Please sign in to comment.