Compare commits

..

3 Commits

Author SHA1 Message Date
renovate[bot]
29775c8558
[dependencies] Update golangci/golangci-lint-action action to v8 2025-05-13 06:44:04 +00:00
世界
df90bd6fa7
documentation: Bump version 2025-05-13 12:53:40 +08:00
Restia-Ashbell
83424d2c78
Fix TLS record fragment 2025-05-13 12:51:06 +08:00
3 changed files with 8 additions and 1 deletions

View File

@ -98,7 +98,7 @@ func (c *Conn) Write(b []byte) (n int, err error) {
} }
} }
if c.splitRecord { if c.splitRecord {
_, err = c.tcpConn.Write(buffer.Bytes()) _, err = c.Conn.Write(buffer.Bytes())
if err != nil { if err != nil {
return return
} }

View File

@ -2,6 +2,10 @@
icon: material/alert-decagram icon: material/alert-decagram
--- ---
#### 1.12.0-beta.14
* Fixes and improvements
#### 1.12.0-beta.13 #### 1.12.0-beta.13
* Add TLS record fragment route options **1** * Add TLS record fragment route options **1**

View File

@ -452,6 +452,9 @@ match:
metadata.TLSFragment = true metadata.TLSFragment = true
metadata.TLSFragmentFallbackDelay = routeOptions.TLSFragmentFallbackDelay metadata.TLSFragmentFallbackDelay = routeOptions.TLSFragmentFallbackDelay
} }
if routeOptions.TLSRecordFragment {
metadata.TLSRecordFragment = true
}
} }
switch action := currentRule.Action().(type) { switch action := currentRule.Action().(type) {
case *rule.RuleActionSniff: case *rule.RuleActionSniff: