mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 21:17:47 +03:00
feat: add padding to requests & responses
This commit is contained in:
parent
9f54aade8f
commit
ebb9b3217e
5 changed files with 374 additions and 305 deletions
|
@ -289,6 +289,12 @@ func (h *h3sHandler) handleUDPRequest(stream quic.Stream) {
|
|||
_ = stream.Close()
|
||||
return
|
||||
}
|
||||
// Read request
|
||||
err := protocol.ReadUDPRequest(stream)
|
||||
if err != nil {
|
||||
_ = stream.Close()
|
||||
return
|
||||
}
|
||||
// Add to session manager
|
||||
sessionID, conn, connCloseFunc, err := h.udpSM.Add()
|
||||
if err != nil {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue