diff options
author | Othmar Gsenger <otti@anytun.org> | 2007-09-04 17:21:25 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2007-09-04 17:21:25 +0000 |
commit | e1199f77266b0198457f08f58769795cff3eb2b9 (patch) | |
tree | c2cc64f92ba0cddc958b5d0310583080914504a0 /options.h | |
parent | command line help s/\/|/ (diff) |
added parameter type
Diffstat (limited to 'options.h')
-rw-r--r-- | options.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -56,6 +56,8 @@ public: Options& setRemoteAddrPort(std::string addr, u_int16_t port); std::string getDevName(); Options& setDevName(std::string d); + std::string getDevType(); + Options& setDevType(std::string d); std::string getIfconfigParamLocal(); Options& setIfconfigParamLocal(std::string i); std::string getIfconfigParamRemoteNetmask(); @@ -77,6 +79,7 @@ private: std::string remote_addr_; u_int16_t remote_port_; std::string dev_name_; + std::string dev_type_; std::string ifconfig_param_local_; std::string ifconfig_param_remote_netmask_; window_size_t seq_window_size_; |