diff options
Diffstat (limited to 'connectionParam.h')
-rw-r--r-- | connectionParam.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/connectionParam.h b/connectionParam.h index ba1f757..96d5525 100644 --- a/connectionParam.h +++ b/connectionParam.h @@ -37,13 +37,14 @@ #include "authAlgo.h" #include "seqWindow.h" -struct connection_param_t +class ConnectionParam { - Options& opt; - KeyDerivation& kd; - Cypher& c; - AuthAlgo& a; - SeqWindow& seq; + ConnectionParam(Options& opt,KeyDerivation& kd,Cypher& c,AuthAlgo& a,SeqWindow& seq); + Options& opt_; + KeyDerivation& kd_; + Cypher& c_; + AuthAlgo& a_; + SeqWindow& seq_; }; #endif |