| 102 | } |
| 103 | |
| 104 | type PostHandshakeRecordDetectConn struct { |
| 105 | net.Conn |
| 106 | Key string |
| 107 | CcsSent bool |
| 108 | } |
| 109 | |
| 110 | func (c *PostHandshakeRecordDetectConn) Write(b []byte) (n int, err error) { |
| 111 | if len(b) >= 3 && bytes.Equal(b[:3], []byte{20, 3, 3}) { |
nothing calls this directly
no outgoing calls
no test coverage detected