| 47 | |
| 48 | |
| 49 | struct ProtocolVersion { |
| 50 | uint8 major_; |
| 51 | uint8 minor_; // major and minor SSL/TLS version numbers |
| 52 | |
| 53 | ProtocolVersion(uint8 maj = 3, uint8 min = 0); |
| 54 | }; |
| 55 | |
| 56 | |
| 57 | // Record Layer Header for PlainText, Compressed, and CipherText |
no outgoing calls
no test coverage detected