mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-03 04:27:39 +03:00
fix: do not require client-side fast open
This commit is contained in:
parent
506d8e01b8
commit
2c62a1a1b4
2 changed files with 10 additions and 4 deletions
|
@ -57,7 +57,6 @@ func TestClientServerHookTCP(t *testing.T) {
|
|||
c, _, err := client.NewClient(&client.Config{
|
||||
ServerAddr: udpAddr,
|
||||
TLSConfig: client.TLSConfig{InsecureSkipVerify: true},
|
||||
FastOpen: true, // Client MUST have FastOpen for this
|
||||
})
|
||||
assert.NoError(t, err)
|
||||
defer c.Close()
|
||||
|
|
|
@ -214,9 +214,12 @@ func (h *h3sHandler) handleTCPRequest(stream quic.Stream) {
|
|||
// Call the hook if set
|
||||
var putback []byte
|
||||
if h.config.RequestHook != nil {
|
||||
// When RequestHook is enabled, the server should always accept a connection
|
||||
// so that the client will send whatever request the hook wants to see.
|
||||
// This is essentially a server-side fast-open.
|
||||
_ = protocol.WriteTCPResponse(stream, true, "RequestHook enabled")
|
||||
putback, err = h.config.RequestHook.TCP(stream, &reqAddr)
|
||||
if err != nil {
|
||||
_ = protocol.WriteTCPResponse(stream, false, err.Error())
|
||||
_ = stream.Close()
|
||||
return
|
||||
}
|
||||
|
@ -228,7 +231,9 @@ func (h *h3sHandler) handleTCPRequest(stream quic.Stream) {
|
|||
// Dial target
|
||||
tConn, err := h.config.Outbound.TCP(reqAddr)
|
||||
if err != nil {
|
||||
_ = protocol.WriteTCPResponse(stream, false, err.Error())
|
||||
if h.config.RequestHook == nil {
|
||||
_ = protocol.WriteTCPResponse(stream, false, err.Error())
|
||||
}
|
||||
_ = stream.Close()
|
||||
// Log the error
|
||||
if h.config.EventLogger != nil {
|
||||
|
@ -236,7 +241,9 @@ func (h *h3sHandler) handleTCPRequest(stream quic.Stream) {
|
|||
}
|
||||
return
|
||||
}
|
||||
_ = protocol.WriteTCPResponse(stream, true, "")
|
||||
if h.config.RequestHook == nil {
|
||||
_ = protocol.WriteTCPResponse(stream, true, "Connected")
|
||||
}
|
||||
// Put back the data if the hook requested
|
||||
if len(putback) > 0 {
|
||||
_, _ = tConn.Write(putback)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue