summaryrefslogtreecommitdiff
path: root/connectionParam.cpp
diff options
context:
space:
mode:
authorOthmar Gsenger <otti@anytun.org>2007-12-07 09:52:31 +0000
committerOthmar Gsenger <otti@anytun.org>2007-12-07 09:52:31 +0000
commitbb802659d86359d275b705be0d5d0f6828349e45 (patch)
tree40680eeef8ef2b9352f66a07224dd299520c1565 /connectionParam.cpp
parentadded boost as dependency (diff)
split parameters to global params and connection params (moved to connection list)
Diffstat (limited to 'connectionParam.cpp')
-rw-r--r--connectionParam.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/connectionParam.cpp b/connectionParam.cpp
index 5ca31a9..d7dd3a4 100644
--- a/connectionParam.cpp
+++ b/connectionParam.cpp
@@ -30,6 +30,6 @@
#include "connectionParam.h"
-ConnectionParam::ConnectionParam(Options& opt,KeyDerivation& kd,Cypher& c,AuthAlgo& a,SeqWindow& seq) : opt_(opt),kd_(kd),c_(c),a_(a),seq_(seq)
+ConnectionParam::ConnectionParam(KeyDerivation& kd, SeqWindow& seq, std::string remote_host, u_int16_t remote_port) : kd_(kd),seq_(seq),remote_host_(remote_host), remote_port_(remote_port)
{
}