mirror of
https://github.com/fatedier/frp.git
synced 2025-06-17 17:18:21 +00:00
Compare commits
1 Commits
f01f024a5c
...
4afe350160
Author | SHA1 | Date | |
---|---|---|---|
|
4afe350160 |
@ -1,4 +1,3 @@
|
|||||||
### Fixes
|
### Fixes
|
||||||
|
|
||||||
* Fix the issue of incorrect interval time for rotating the log by day.
|
* Fix the issue of incorrect interval time for rotating the log by day.
|
||||||
* Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
|
|
||||||
|
@ -43,10 +43,6 @@ func init() {
|
|||||||
crypto.DefaultSalt = "frp"
|
crypto.DefaultSalt = "frp"
|
||||||
// Disable quic-go's receive buffer warning.
|
// Disable quic-go's receive buffer warning.
|
||||||
os.Setenv("QUIC_GO_DISABLE_RECEIVE_BUFFER_WARNING", "true")
|
os.Setenv("QUIC_GO_DISABLE_RECEIVE_BUFFER_WARNING", "true")
|
||||||
// Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
|
|
||||||
if os.Getenv("QUIC_GO_DISABLE_ECN") == "" {
|
|
||||||
os.Setenv("QUIC_GO_DISABLE_ECN", "true")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type cancelErr struct {
|
type cancelErr struct {
|
||||||
|
@ -63,10 +63,6 @@ const (
|
|||||||
func init() {
|
func init() {
|
||||||
// Disable quic-go's receive buffer warning.
|
// Disable quic-go's receive buffer warning.
|
||||||
os.Setenv("QUIC_GO_DISABLE_RECEIVE_BUFFER_WARNING", "true")
|
os.Setenv("QUIC_GO_DISABLE_RECEIVE_BUFFER_WARNING", "true")
|
||||||
// Disable quic-go's ECN support by default. It may cause issues on certain operating systems.
|
|
||||||
if os.Getenv("QUIC_GO_DISABLE_ECN") == "" {
|
|
||||||
os.Setenv("QUIC_GO_DISABLE_ECN", "true")
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Server service
|
// Server service
|
||||||
|
Loading…
x
Reference in New Issue
Block a user