diff options
author | Othmar Gsenger <otti@anytun.org> | 2007-12-09 13:37:08 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2007-12-09 13:37:08 +0000 |
commit | 13d211415d6a50b20190efd9a151ddd6b056a4c1 (patch) | |
tree | d3d443fe8792cfc6bb86e58d1d1d3470f9d64e13 /connectionParam.h | |
parent | fixed logging, remove output to stdout (diff) |
code clean up
fixed sender sequence number (is a connection parameter)
Diffstat (limited to 'connectionParam.h')
-rw-r--r-- | connectionParam.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/connectionParam.h b/connectionParam.h index c786db9..770c3bd 100644 --- a/connectionParam.h +++ b/connectionParam.h @@ -46,9 +46,10 @@ namespace boost { class ConnectionParam { public: - ConnectionParam( KeyDerivation& kd, SeqWindow& seq, std::string remote_host, u_int16_t remote_port); + ConnectionParam( KeyDerivation& kd, SeqWindow& seq_window,seq_nr_t seq_nr_, std::string remote_host, u_int16_t remote_port); KeyDerivation& kd_; - SeqWindow& seq_; + SeqWindow& seq_window_; + seq_nr_t seq_nr_; std::string remote_host_; u_int16_t remote_port_; private: |