| 137 | var CCSMsg = []byte{0x14, 0x3, 0x3, 0x0, 0x1, 0x1} |
| 138 | |
| 139 | type CCSDetectConn struct { |
| 140 | net.Conn |
| 141 | Key string |
| 142 | } |
| 143 | |
| 144 | func (c *CCSDetectConn) Write(b []byte) (n int, err error) { |
| 145 | if len(b) >= 3 && bytes.Equal(b[:3], []byte{20, 3, 3}) { |
nothing calls this directly
no outgoing calls
no test coverage detected