aboutsummaryrefslogtreecommitdiffstats
path: root/channels/h323/ast_h323.cpp
diff options
context:
space:
mode:
authorjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-05-31 18:42:09 +0000
committerjeremy <jeremy@f38db490-d61c-443f-a65b-d21fe96a405b>2003-05-31 18:42:09 +0000
commit17e27f0d8f713782b858057464e29f9f7e971e3f (patch)
tree58062a8a6b6a30ab0d1c6f7c93d9c487e2532cec /channels/h323/ast_h323.cpp
parentc98bfb03024d976de523c73d7c4602004d1b30d9 (diff)
remove references to jitter as we use Asterisk's RTP and fix a silly typo
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@1066 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels/h323/ast_h323.cpp')
-rwxr-xr-xchannels/h323/ast_h323.cpp16
1 files changed, 6 insertions, 10 deletions
diff --git a/channels/h323/ast_h323.cpp b/channels/h323/ast_h323.cpp
index 892a2d0f5..010ff50f0 100755
--- a/channels/h323/ast_h323.cpp
+++ b/channels/h323/ast_h323.cpp
@@ -44,7 +44,6 @@ int mode = H323_DTMF_RFC2833;
BOOL noFastStart;
BOOL noH245Tunnelling;
BOOL noSilenceSuppression;
-WORD jitter;
/**
* We assume that only one endPoint should exist.
@@ -382,17 +381,17 @@ H323Connection * MyH323EndPoint::CreateConnection(unsigned callReference, void *
if (noH245Tunnelling)
options |= H323Connection::H245TunnelingOptionDisable;
- return new MyH323Connection(*this, callReference, options, jitter);
+ return new MyH323Connection(*this, callReference, options);
}
/* MyH323Connection */
MyH323Connection::MyH323Connection(MyH323EndPoint & ep,
unsigned callReference,
- unsigned options,
- WORD jitter): H323Connection(ep,
- callReference,
- options)
+ unsigned options)
+ : H323Connection(ep,
+ callReference,
+ options)
{
remoteIpAddress = 0; // IP Address of remote endpoint
remotePort = 0; // remote endpoint Data port (control is dataPort+1)
@@ -810,7 +809,7 @@ int h323_set_capability(int cap, int dtmfMode)
}
/** Start the H.323 listener */
-int h323_start_listener(int listenPort, struct sockaddr_in bindaddr, int _jitter)
+int h323_start_listener(int listenPort, struct sockaddr_in bindaddr)
{
if (!end_point_exist()) {
@@ -818,8 +817,6 @@ int h323_start_listener(int listenPort, struct sockaddr_in bindaddr, int _jitter
return 1;
}
- jitter = _jitter;
-
PIPSocket::Address interfaceAddress(bindaddr.sin_addr);
if (!listenPort)
@@ -921,7 +918,6 @@ int h323_set_gk(int gatekeeper_discover, char *gatekeeper, char *secret)
}
}
- cout << "end" << endl;
return 0;
}