fix: tuic connection error using fast_open
This commit is contained in:
parent
a7233f6036
commit
6ecd1c31e5
1 changed files with 4 additions and 0 deletions
|
@ -307,6 +307,10 @@ type earlyConn struct {
|
|||
RequestTimeout time.Duration
|
||||
}
|
||||
|
||||
func (conn *earlyConn) ReaderReplaceable() bool {
|
||||
return false
|
||||
}
|
||||
|
||||
func (conn *earlyConn) response() error {
|
||||
if conn.RequestTimeout > 0 {
|
||||
_ = conn.SetReadDeadline(time.Now().Add(conn.RequestTimeout))
|
||||
|
|
Loading…
Reference in a new issue