We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c818858 commit 83424d2Copy full SHA for 83424d2
common/tlsfragment/conn.go
@@ -98,7 +98,7 @@ func (c *Conn) Write(b []byte) (n int, err error) {
98
}
99
100
if c.splitRecord {
101
- _, err = c.tcpConn.Write(buffer.Bytes())
+ _, err = c.Conn.Write(buffer.Bytes())
102
if err != nil {
103
return
104
route/route.go
@@ -452,6 +452,9 @@ match:
452
metadata.TLSFragment = true
453
metadata.TLSFragmentFallbackDelay = routeOptions.TLSFragmentFallbackDelay
454
455
+ if routeOptions.TLSRecordFragment {
456
+ metadata.TLSRecordFragment = true
457
+ }
458
459
switch action := currentRule.Action().(type) {
460
case *rule.RuleActionSniff:
0 commit comments