()
| 1643 | type serverHelloDoneMsg struct{} |
| 1644 | |
| 1645 | func (m *serverHelloDoneMsg) marshal() ([]byte, error) { |
| 1646 | x := make([]byte, 4) |
| 1647 | x[0] = typeServerHelloDone |
| 1648 | return x, nil |
| 1649 | } |
| 1650 | |
| 1651 | func (m *serverHelloDoneMsg) unmarshal(data []byte) bool { |
| 1652 | return len(data) == 4 |
nothing calls this directly
no outgoing calls
no test coverage detected