summaryrefslogtreecommitdiff
path: root/src/anyrtpproxy/options.cpp
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-05-19 14:43:07 +0000
committerChristian Pointner <equinox@anytun.org>2008-05-19 14:43:07 +0000
commitea79f3100d96c399a934c16e1fd5c70a0a4cf75b (patch)
tree651aaa728a2abf305beca818e8a95d915685edff /src/anyrtpproxy/options.cpp
parentadded extra catch for std::runtime_error (diff)
fixed bad default @ anyrtpproxy control-socket
Diffstat (limited to 'src/anyrtpproxy/options.cpp')
-rw-r--r--src/anyrtpproxy/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/anyrtpproxy/options.cpp b/src/anyrtpproxy/options.cpp
index bdddf75..be912e2 100644
--- a/src/anyrtpproxy/options.cpp
+++ b/src/anyrtpproxy/options.cpp
@@ -186,7 +186,7 @@ bool Options::parse(int argc, char* argv[])
bool Options::sanityCheck()
{
- if(!control_interface_.port_) control_interface_.port_ = 22220;
+ if(!control_interface_.port_) control_interface_.port_ = 22222;
return true;
}