summaryrefslogtreecommitdiff
path: root/src/anyrtpproxy/options.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-05-20 13:45:06 +0000
committerChristian Pointner <equinox@anytun.org>2008-05-20 13:45:06 +0000
commitff8ab8d7459c04a55794c4abc32f2cb8622f1624 (patch)
tree3ebb82f4597d3b589cedfac0e48eeead41dec5ab /src/anyrtpproxy/options.h
parentbugfix with strerror_r - still not working but at least not using uninitializ... (diff)
added -i option to anyrtpproxy
Diffstat (limited to 'src/anyrtpproxy/options.h')
-rw-r--r--src/anyrtpproxy/options.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/anyrtpproxy/options.h b/src/anyrtpproxy/options.h
index b6ac957..1eb176d 100644
--- a/src/anyrtpproxy/options.h
+++ b/src/anyrtpproxy/options.h
@@ -83,6 +83,8 @@ public:
std::string getChrootDir();
bool getDaemonize();
Host getControlInterface();
+ std::string getLocalAddr();
+ Options& setLocalAddr(std::string l);
u_int16_t getLocalSyncPort();
Options& setLocalSyncPort(u_int16_t l);
u_int16_t getRtpStartPort();
@@ -118,6 +120,7 @@ private:
std::string chroot_dir_;
bool daemonize_;
u_int16_t local_sync_port_;
+ std::string local_addr_;
u_int16_t rtp_start_port_;
u_int16_t rtp_end_port_;
ConnectToList connect_to_;