| 55 | /// |
| 56 | |
| 57 | Client::Client(CipherSuite suite_in, |
| 58 | SignaturePrivateKey sig_priv_in, |
| 59 | Credential cred_in) |
| 60 | : suite(suite_in) |
| 61 | , sig_priv(std::move(sig_priv_in)) |
| 62 | , cred(std::move(cred_in)) |
| 63 | { |
| 64 | } |
| 65 | |
| 66 | Session |
| 67 | Client::begin_session(const bytes& group_id) const |
nothing calls this directly
no outgoing calls
no test coverage detected