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
34 #include "datatypes.h"
36 #include "threadUtils.hpp"
39 typedef struct OptionConnectTo
45 typedef std::list
<OptionConnectTo
> ConnectToList
;
50 static Options
& instance();
52 bool parse(int argc
, char* argv
[]);
56 std::string
getProgname();
57 Options
& setProgname(std::string p
);
59 Options
& setDaemonize(bool d
);
60 sender_id_t
getSenderId();
61 Options
& setSenderId(sender_id_t s
);
62 std::string
getLocalAddr();
63 Options
& setLocalAddr(std::string l
);
64 std::string
getLocalSyncAddr();
65 Options
& setLocalSyncAddr(std::string l
);
66 std::string
getRemoteSyncAddr();
67 Options
& setRemoteSyncAddr(std::string l
);
68 u_int16_t
getRemoteSyncPort();
69 Options
& setRemoteSyncPort(u_int16_t l
);
70 u_int16_t
getLocalPort();
71 Options
& setLocalPort(u_int16_t l
);
72 std::string
getRemoteAddr();
73 Options
& setRemoteAddr(std::string r
);
74 u_int16_t
getLocalSyncPort();
75 Options
& setLocalSyncPort(u_int16_t l
);
76 u_int16_t
getRemotePort();
77 Options
& setRemotePort(u_int16_t r
);
78 Options
& setRemoteAddrPort(std::string addr
, u_int16_t port
);
79 std::string
getDevName();
80 Options
& setDevName(std::string d
);
81 std::string
getDevType();
82 Options
& setDevType(std::string d
);
83 std::string
getIfconfigParamLocal();
84 Options
& setIfconfigParamLocal(std::string i
);
85 std::string
getIfconfigParamRemoteNetmask();
86 Options
& setIfconfigParamRemoteNetmask(std::string i
);
87 window_size_t
getSeqWindowSize();
88 Options
& setSeqWindowSize(window_size_t s
);
89 std::string
getCipher();
90 Options
& setCipher(std::string c
);
91 std::string
getKdPrf();
92 Options
& setKdPrf(std::string k
);
93 std::string
getAuthAlgo();
94 Options
& setAuthAlgo(std::string a
);
95 ConnectToList
getConnectTo();
96 Options
& setMux(u_int16_t m
);
98 Options
& setKey(std::string k
);
100 Options
& setSalt(std::string s
);
106 Options(const Options
&l
);
107 void operator=(const Options
&l
);
109 static Options
* inst
;
110 static Mutex instMutex
;
111 class instanceCleaner
{
112 public: ~instanceCleaner() {
113 if(Options::inst
!= 0)
114 delete Options::inst
;
117 friend class instanceCleaner
;
121 ConnectToList connect_to_
;
122 std::string progname_
;
124 sender_id_t sender_id_
;
125 std::string local_addr_
;
126 std::string local_sync_addr_
;
127 u_int16_t local_port_
;
128 u_int16_t local_sync_port_
;
129 std::string remote_sync_addr_
;
130 u_int16_t remote_sync_port_
;
131 std::string remote_addr_
;
132 u_int16_t remote_port_
;
133 std::string dev_name_
;
134 std::string dev_type_
;
135 std::string ifconfig_param_local_
;
136 std::string ifconfig_param_remote_netmask_
;
137 window_size_t seq_window_size_
;
140 std::string auth_algo_
;
146 extern Options
& gOpt
;