summaryrefslogtreecommitdiff
path: root/connectionParam.h
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2007-11-06 23:28:11 +0000
committerOthmar Gsenger <otti@anytun.org>2007-11-06 23:28:11 +0000
commit49147bacbfb07337c54ddd3df94499c166a0376c (patch)
treecaca5664c5169353d78846e74395b7c601f67b01 /connectionParam.h
parentadded router (diff)
router + connection manage eingebaut
Diffstat (limited to 'connectionParam.h')
-rw-r--r--connectionParam.h13
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