working version with crypto
[anytun.git] / connectionParam.h
blob1002b23de7955f9ce21abe77b21229ce19fb7890
1 /*
2 * anytun
4 * The secure anycast tunneling protocol (satp) defines a protocol used
5 * for communication between any combination of unicast and anycast
6 * tunnel endpoints. It has less protocol overhead than IPSec in Tunnel
7 * mode and allows tunneling of every ETHER TYPE protocol (e.g.
8 * ethernet, ip, arp ...). satp directly includes cryptography and
9 * message authentication based on the methodes used by SRTP. It is
10 * intended to deliver a generic, scaleable and secure solution for
11 * tunneling and relaying of packets of any protocol.
14 * Copyright (C) 2007 anytun.org <satp@wirdorange.org>
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2
18 * as published by the Free Software Foundation.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program (see the file COPYING included with this
27 * distribution); if not, write to the Free Software Foundation, Inc.,
28 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #ifndef _CONNECTIONPARAM_H_
32 #define _CONNECTIONPARAM_H_
34 #include "keyDerivation.h"
35 #include "cipher.h"
36 #include "authAlgo.h"
37 #include "seqWindow.h"
38 #include "threadUtils.hpp"
40 #include <boost/archive/text_oarchive.hpp>
41 #include <boost/archive/text_iarchive.hpp>
43 class ConnectionParam
45 public:
46 ConnectionParam(const ConnectionParam & src);
47 ConnectionParam( KeyDerivation& kd, SeqWindow& seq_window, seq_nr_t seq_nr_, std::string remote_host, u_int16_t remote_port);
49 KeyDerivation& kd_;
50 SeqWindow& seq_window_;
51 seq_nr_t seq_nr_;
52 std::string remote_host_;
53 u_int16_t remote_port_;
55 private:
56 //TODO: check if this is ok
57 Mutex mutex_;
58 friend class boost::serialization::access;
59 template<class Archive>
60 void serialize(Archive & ar, const unsigned int version)
62 Lock lock(mutex_);
63 ar & kd_;
64 ar & seq_window_;
65 ar & seq_nr_;
66 ar & remote_host_;
67 ar & remote_port_;
71 #endif