added linuxtage presentation
[anytun.git] / src / anyConfOptions.h
blobbea749be700aa7feb15d63ee84aad5026e7fdeae
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 _ANY_CONF_OPTIONS_H_
32 #define _ANY_CONF_OPTIONS_H_
34 #include "datatypes.h"
35 #include "buffer.h"
36 #include "threadUtils.hpp"
37 #include <list>
39 typedef struct OptionRoute
41 std::string net_addr;
42 uint16_t prefix_length;
45 typedef std::list<OptionRoute> RouteList;
47 class Options
49 public:
50 static Options& instance();
52 bool parse(int argc, char* argv[]);
53 void printUsage();
54 void printOptions();
56 std::string getProgname();
57 Options& setProgname(std::string p);
58 std::string getRemoteAddr();
59 Options& setRemoteAddr(std::string r);
60 u_int16_t getRemotePort();
61 Options& setRemotePort(u_int16_t r);
62 Options& setRemoteAddrPort(std::string addr, u_int16_t port);
64 window_size_t getSeqWindowSize();
65 Options& setSeqWindowSize(window_size_t s);
66 std::string getKdPrf();
67 Options& setKdPrf(std::string k);
68 Options& setMux(u_int16_t m);
69 u_int16_t getMux();
70 Options& setKey(std::string k);
71 Buffer getKey();
72 Options& setSalt(std::string s);
73 Buffer getSalt();
74 RouteList getRoutes();
76 private:
77 Options();
78 ~Options();
79 Options(const Options &l);
80 void operator=(const Options &l);
82 static Options* inst;
83 static Mutex instMutex;
84 class instanceCleaner {
85 public: ~instanceCleaner() {
86 if(Options::inst != 0)
87 delete Options::inst;
90 friend class instanceCleaner;
92 Mutex mutex;
94 std::string progname_;
95 std::string remote_addr_;
96 u_int16_t remote_port_;
97 window_size_t seq_window_size_;
98 std::string kd_prf_;
99 u_int16_t mux_;
100 Buffer key_;
101 Buffer salt_;
103 RouteList routes_;
106 extern Options& gOpt;
108 #endif