| 
									
										
										
										
											2005-06-01 16:00:13 +00:00
										 |  |  | #define _GNU_SOURCE
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * ast_h323.cpp | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * OpenH323 Channel Driver for ASTERISK PBX. | 
					
						
							|  |  |  |  *			By  Jeremy McNamara | 
					
						
							|  |  |  |  *			For The NuFone Network | 
					
						
							|  |  |  |  *  | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  |  * chan_h323 has been derived from code created by | 
					
						
							|  |  |  |  *               Michael Manousos and Mark Spencer | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This file is part of the chan_h323 driver for Asterisk | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * chan_h323 is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation; either version 2 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version.  | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * chan_h323 is distributed WITHOUT ANY WARRANTY; without even  | 
					
						
							|  |  |  |  * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR  | 
					
						
							|  |  |  |  * PURPOSE. See the GNU General Public License for more details.  | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  |  * along with this program; if not, write to the Free Software | 
					
						
							|  |  |  |  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  | 
					
						
							|  |  |  |  * | 
					
						
							| 
									
										
										
										
											2003-08-25 18:34:10 +00:00
										 |  |  |  * Version Info: $Id$ | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-06-26 03:50:14 +00:00
										 |  |  | #include <arpa/inet.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <list>
 | 
					
						
							|  |  |  | #include <string>
 | 
					
						
							|  |  |  | #include <algorithm>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <ptlib.h>
 | 
					
						
							|  |  |  | #include <h323.h>
 | 
					
						
							|  |  |  | #include <h323pdu.h>
 | 
					
						
							|  |  |  | #include <mediafmt.h>
 | 
					
						
							|  |  |  | #include <lid.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							| 
									
										
										
										
											2005-06-01 16:00:13 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2005-04-21 06:02:45 +00:00
										 |  |  | #include "asterisk/logger.h"
 | 
					
						
							| 
									
										
										
										
											2005-06-01 16:00:13 +00:00
										 |  |  | #include "asterisk/channel.h"
 | 
					
						
							| 
									
										
										
										
											2004-06-26 03:50:14 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-26 03:50:14 +00:00
										 |  |  | #include "chan_h323.h"
 | 
					
						
							|  |  |  | #include "ast_h323.h"
 | 
					
						
							| 
									
										
										
										
											2004-01-13 03:07:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | /* PWlib Required Components  */ | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | #define MAJOR_VERSION 1
 | 
					
						
							|  |  |  | #define MINOR_VERSION 0
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | #define BUILD_TYPE    ReleaseCode
 | 
					
						
							|  |  |  | #define BUILD_NUMBER  0
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** Counter for the number of connections */ | 
					
						
							|  |  |  | int channelsOpen; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* DTMF Mode */ | 
					
						
							|  |  |  | int mode = H323_DTMF_RFC2833; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * We assume that only one endPoint should exist. | 
					
						
							|  |  |  |  * The application cannot run the h323_end_point_create() more than once | 
					
						
							|  |  |  |  * FIXME: Singleton this, for safety | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | MyH323EndPoint *endPoint = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** PWLib entry point */ | 
					
						
							|  |  |  | MyProcess *localProcess = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | class PAsteriskLog : public PObject, public iostream { | 
					
						
							|  |  |  | 	PCLASSINFO(PAsteriskLog, PObject); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	public: | 
					
						
							|  |  |  | 	PAsteriskLog() : iostream(cout.rdbuf()) { init(&buffer); } | 
					
						
							|  |  |  | 	~PAsteriskLog() { flush(); } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	private: | 
					
						
							|  |  |  | 	PAsteriskLog(const PAsteriskLog &) : iostream(cout.rdbuf()) { } | 
					
						
							|  |  |  | 	PAsteriskLog & operator=(const PAsteriskLog &) { return *this; } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	class Buffer : public streambuf { | 
					
						
							|  |  |  | 		public: | 
					
						
							|  |  |  | 		virtual int overflow(int=EOF); | 
					
						
							|  |  |  | 		virtual int underflow(); | 
					
						
							|  |  |  | 		virtual int sync(); | 
					
						
							|  |  |  | 		PString string; | 
					
						
							|  |  |  | 	} buffer; | 
					
						
							|  |  |  | 	friend class Buffer; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PAsteriskLog *logstream = NULL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PAsteriskLog::Buffer::overflow(int c) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (pptr() >= epptr()) { | 
					
						
							|  |  |  | 		int ppos = pptr() - pbase(); | 
					
						
							| 
									
										
										
										
											2005-04-29 04:22:47 +00:00
										 |  |  | 		char *newptr = string.GetPointer(string.GetSize() + 2000); | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 		setp(newptr, newptr + string.GetSize() - 1); | 
					
						
							|  |  |  | 		pbump(ppos); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (c != EOF) { | 
					
						
							|  |  |  | 		*pptr() = (char)c; | 
					
						
							|  |  |  | 		pbump(1); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PAsteriskLog::Buffer::underflow() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	return EOF; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int PAsteriskLog::Buffer::sync() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	char *str = strdup(string); | 
					
						
							|  |  |  | 	char *s, *s1; | 
					
						
							|  |  |  | 	char c; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/* Pass each line with different ast_verbose() call */ | 
					
						
							|  |  |  | 	for (s = str; s && *s; s = s1) { | 
					
						
							|  |  |  | 		s1 = strchr(s, '\n'); | 
					
						
							|  |  |  | 		if (!s1) | 
					
						
							|  |  |  | 			s1 = s + strlen(s); | 
					
						
							|  |  |  | 		else | 
					
						
							|  |  |  | 			s1++; | 
					
						
							|  |  |  | 		c = *s1; | 
					
						
							|  |  |  | 		*s1 = '\0'; | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 		ast_verbose("%s", s); | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 		*s1 = c; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	free(str); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	string = PString(); | 
					
						
							| 
									
										
										
										
											2005-04-29 04:22:47 +00:00
										 |  |  | 	char *base = string.GetPointer(2000); | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	setp(base, base + string.GetSize() - 1); | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define cout (*logstream)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | MyProcess::MyProcess(): PProcess("The NuFone Network's", "H.323 Channel Driver for Asterisk", | 
					
						
							|  |  |  |              MAJOR_VERSION, MINOR_VERSION, BUILD_TYPE, BUILD_NUMBER) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 	/* Fix missed one in PWLib */ | 
					
						
							|  |  |  | 	PX_firstTimeStart = FALSE; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	Resume(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyProcess::Main() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	cout << "  == Creating H.323 Endpoint" << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	endPoint = new MyH323EndPoint(); | 
					
						
							| 
									
										
										
										
											2005-11-03 01:41:32 +00:00
										 |  |  | 	/* Due to a bug in the H.323 recomendation/stack we should request a sane
 | 
					
						
							|  |  |  | 	   amount of bandwidth from the GK - this function is ignored if not using a GK  | 
					
						
							|  |  |  | 	   We are requesting 128 (64k in each direction), which is the worst case codec. */ | 
					
						
							|  |  |  |         endPoint->SetInitialBandwidth(1280); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	PTrace::Initialise(0, NULL, PTrace::Timestamp | PTrace::Thread | PTrace::FileAndLine); | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	PTrace::SetStream(logstream); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | void PAssertFunc(const char *msg) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	ast_log(LOG_ERROR, "%s\n", msg); | 
					
						
							|  |  |  | 	/* XXX: Probably we need to crash here */ | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-21 00:07:56 +00:00
										 |  |  | H323_REGISTER_CAPABILITY(H323_G7231Capability, OPAL_G7231); | 
					
						
							|  |  |  | H323_REGISTER_CAPABILITY(AST_G729Capability,  OPAL_G729); | 
					
						
							|  |  |  | H323_REGISTER_CAPABILITY(AST_G729ACapability, OPAL_G729A); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | H323_G7231Capability::H323_G7231Capability(BOOL annexA_) | 
					
						
							|  |  |  |   : H323AudioCapability(7, 4) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	annexA = annexA_; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PObject::Comparison H323_G7231Capability::Compare(const PObject & obj) const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	Comparison result = H323AudioCapability::Compare(obj); | 
					
						
							|  |  |  |   	if (result != EqualTo) { | 
					
						
							|  |  |  |     		return result; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |   	PINDEX otherAnnexA = ((const H323_G7231Capability &)obj).annexA; | 
					
						
							|  |  |  |   	if (annexA < otherAnnexA) { | 
					
						
							|  |  |  |     		return LessThan; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |   	if (annexA > otherAnnexA) { | 
					
						
							|  |  |  |     		return GreaterThan; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return EqualTo; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PObject * H323_G7231Capability::Clone() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |  	 return new H323_G7231Capability(*this); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PString H323_G7231Capability::GetFormatName() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-12-21 00:07:56 +00:00
										 |  |  |   	return OPAL_G7231; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unsigned H323_G7231Capability::GetSubType() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return H245_AudioCapability::e_g7231; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL H323_G7231Capability::OnSendingPDU(H245_AudioCapability & cap, | 
					
						
							|  |  |  |                                           unsigned packetSize) const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	cap.SetTag(H245_AudioCapability::e_g7231); | 
					
						
							|  |  |  |   	H245_AudioCapability_g7231 & g7231 = cap; | 
					
						
							|  |  |  |   	g7231.m_maxAl_sduAudioFrames = packetSize; | 
					
						
							|  |  |  |   	g7231.m_silenceSuppression = annexA; | 
					
						
							|  |  |  |   	return TRUE; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL H323_G7231Capability::OnReceivedPDU(const H245_AudioCapability & cap, | 
					
						
							|  |  |  |                                            unsigned & packetSize) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	if (cap.GetTag() != H245_AudioCapability::e_g7231) { | 
					
						
							|  |  |  |     		return FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  |   	const H245_AudioCapability_g7231 & g7231 = cap; | 
					
						
							|  |  |  |   	packetSize = g7231.m_maxAl_sduAudioFrames; | 
					
						
							|  |  |  |   	annexA = g7231.m_silenceSuppression; | 
					
						
							|  |  |  |   	return TRUE; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | H323Codec * H323_G7231Capability::CreateCodec(H323Codec::Direction direction) const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return NULL; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | AST_G729Capability::AST_G729Capability() | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  |   : H323AudioCapability(24, 2) | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PObject * AST_G729Capability::Clone() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return new AST_G729Capability(*this); | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unsigned AST_G729Capability::GetSubType() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return H245_AudioCapability::e_g729; | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PString AST_G729Capability::GetFormatName() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-12-21 00:07:56 +00:00
										 |  |  |   	return OPAL_G729; | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | H323Codec * AST_G729Capability::CreateCodec(H323Codec::Direction direction) const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return NULL; | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | AST_G729ACapability::AST_G729ACapability() | 
					
						
							|  |  |  |   : H323AudioCapability(24, 6) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PObject * AST_G729ACapability::Clone() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return new AST_G729ACapability(*this); | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | unsigned AST_G729ACapability::GetSubType() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return H245_AudioCapability::e_g729AnnexA; | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | PString AST_G729ACapability::GetFormatName() const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-12-21 00:07:56 +00:00
										 |  |  |   	return OPAL_G729A; | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | H323Codec * AST_G729ACapability::CreateCodec(H323Codec::Direction direction) const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	return NULL; | 
					
						
							| 
									
										
										
										
											2003-11-19 22:46:35 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | /** MyH323EndPoint 
 | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  |   */ | 
					
						
							|  |  |  | MyH323EndPoint::MyH323EndPoint() | 
					
						
							|  |  |  | 		: H323EndPoint() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	// Capabilities will be negotiated on per-connection basis
 | 
					
						
							|  |  |  | 	capabilities.RemoveAll(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** The fullAddress parameter is used directly in the MakeCall method so
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  |   * the General form for the fullAddress argument is : | 
					
						
							|  |  |  |   * [alias@][transport$]host[:port] | 
					
						
							|  |  |  |   * default values:	alias = the same value as host. | 
					
						
							|  |  |  |   *					transport = ip. | 
					
						
							|  |  |  |   *					port = 1720. | 
					
						
							|  |  |  |   */ | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | int MyH323EndPoint::MakeCall(const PString & dest, PString & token, unsigned int *callReference, call_options_t *opts) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	PString fullAddress; | 
					
						
							| 
									
										
										
										
											2003-05-12 03:57:43 +00:00
										 |  |  | 	MyH323Connection * connection; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	/* Determine whether we are using a gatekeeper or not. */ | 
					
						
							| 
									
										
										
										
											2004-10-22 19:04:02 +00:00
										 |  |  | 	if (GetGatekeeper()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		fullAddress = dest; | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			cout << " -- Making call to " << fullAddress << " using gatekeeper." << endl; | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 		fullAddress = dest;  | 
					
						
							|  |  |  | 		if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-11-11 21:30:30 +00:00
										 |  |  | 			cout << " -- Making call to " << fullAddress << " without gatekeeper." << endl; | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-07-23 02:27:44 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-05-02 18:46:36 +00:00
										 |  |  | 	if (!(connection = (MyH323Connection *)H323EndPoint::MakeCallLocked(fullAddress, token, opts))) { | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			cout << "Error making call to \"" << fullAddress << '"' << endl; | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 	*callReference = connection->GetCallReference();	 | 
					
						
							| 
									
										
										
										
											2004-12-16 02:03:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (opts->cid_num) { | 
					
						
							|  |  |  | 		connection->ast_cid_num = PString(opts->cid_num); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	if (opts->cid_name) { | 
					
						
							| 
									
										
										
										
											2004-12-16 02:03:19 +00:00
										 |  |  | 		connection->ast_cid_name = PString(opts->cid_name); | 
					
						
							|  |  |  | 		connection->SetLocalPartyName(connection->ast_cid_name); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	connection->dtmfCodec = (RTP_DataFrame::PayloadTypes)opts->dtmfcodec; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "\t-- " << GetLocalUserName() << " is calling host " << fullAddress << endl; | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 		cout << "\t-- Call token is " << (const char *)token << endl; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "\t-- Call reference is " << *callReference << endl; | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 		cout << "\t-- DTMF Payload is " << connection->dtmfCodec << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-09-30 19:30:49 +00:00
										 |  |  | 	connection->Unlock(); 	 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyH323EndPoint::SetEndpointTypeInfo( H225_EndpointType & info ) const | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	H323EndPoint::SetEndpointTypeInfo(info); | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (terminalType == e_GatewayOnly){ | 
					
						
							|  |  |  | 		info.RemoveOptionalField(H225_EndpointType::e_terminal); | 
					
						
							|  |  |  | 		info.IncludeOptionalField(H225_EndpointType::e_gateway); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	info.m_gateway.IncludeOptionalField(H225_GatewayInfo::e_protocol); | 
					
						
							|  |  |  |   	info.m_gateway.m_protocol.SetSize(1); | 
					
						
							|  |  |  |   	H225_SupportedProtocols &protocol=info.m_gateway.m_protocol[0]; | 
					
						
							|  |  |  |   	protocol.SetTag(H225_SupportedProtocols::e_voice); | 
					
						
							|  |  |  |   	PINDEX as=SupportedPrefixes.GetSize(); | 
					
						
							|  |  |  |   	((H225_VoiceCaps &)protocol).m_supportedPrefixes.SetSize(as); | 
					
						
							|  |  |  |   	for (PINDEX p=0; p<as; p++) { | 
					
						
							| 
									
										
										
										
											2005-11-03 01:41:32 +00:00
										 |  |  | 		H323SetAliasAddress(SupportedPrefixes[p], ((H225_VoiceCaps &)protocol).m_supportedPrefixes[p].m_prefix, H225_AliasAddress::e_dialedDigits); | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |   	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyH323EndPoint::SetGateway(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	terminalType = e_GatewayOnly; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | BOOL MyH323EndPoint::ClearCall(const PString & token, H323Connection::CallEndReason reason) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\t-- ClearCall: Request to clear call with token " << token << ", cause " << reason << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return H323EndPoint::ClearCall(token, reason); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | BOOL MyH323EndPoint::ClearCall(const PString & token) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "\t-- ClearCall: Request to clear call with token " << token << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-16 04:25:49 +00:00
										 |  |  | 	return H323EndPoint::ClearCall(token, H323Connection::EndedByLocalUser); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyH323EndPoint::SendUserTone(const PString &token, char tone) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	H323Connection *connection = NULL; | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 	connection = FindConnectionWithLock(token); | 
					
						
							|  |  |  | 	if (connection != NULL) { | 
					
						
							|  |  |  | 		connection->SendUserInputTone(tone, 500); | 
					
						
							|  |  |  | 		connection->Unlock(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyH323EndPoint::OnClosedLogicalChannel(H323Connection & connection, const H323Channel & channel) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	channelsOpen--; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\t\tchannelsOpen = " << channelsOpen << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	H323EndPoint::OnClosedLogicalChannel(connection, channel); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-09-06 20:29:25 +00:00
										 |  |  | BOOL MyH323EndPoint::OnConnectionForwarded(H323Connection & connection, | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  |  		const PString & forwardParty, | 
					
						
							|  |  |  |  		const H323SignalPDU & pdu) | 
					
						
							|  |  |  |  { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |  	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	 	cout << "\t-- Call Forwarded to " << forwardParty << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |  	} | 
					
						
							|  |  |  | 	return FALSE; | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  |  } | 
					
						
							|  |  |  |   | 
					
						
							| 
									
										
										
										
											2003-09-06 20:29:25 +00:00
										 |  |  | BOOL MyH323EndPoint::ForwardConnection(H323Connection & connection, | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  |  		const PString & forwardParty, | 
					
						
							|  |  |  |  		const H323SignalPDU & pdu) | 
					
						
							| 
									
										
										
										
											2003-09-06 20:29:25 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |  	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |  		cout << "\t-- Forwarding call to " << forwardParty << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |  	} | 
					
						
							|  |  |  | 	return H323EndPoint::ForwardConnection(connection, forwardParty, pdu); | 
					
						
							| 
									
										
										
										
											2003-09-06 20:29:25 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | void MyH323EndPoint::OnConnectionEstablished(H323Connection & connection, const PString & estCallToken) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-09-21 18:42:37 +00:00
										 |  |  | 		cout << "\t=-= In OnConnectionEstablished for call " << connection.GetCallReference() << endl; | 
					
						
							|  |  |  | 		cout << "\t\t-- Connection Established with \"" << connection.GetRemotePartyName() << "\"" << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-09-19 16:53:01 +00:00
										 |  |  | 	on_connection_established(connection.GetCallReference(), (const char *)connection.GetCallToken()); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** OnConnectionCleared callback function is called upon the dropping of an established
 | 
					
						
							|  |  |  |   * H323 connection.  | 
					
						
							|  |  |  |   */ | 
					
						
							|  |  |  | void MyH323EndPoint::OnConnectionCleared(H323Connection & connection, const PString & clearedCallToken) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2005-05-19 16:17:08 +00:00
										 |  |  | 	PString remoteName = connection.GetRemotePartyName(); | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	switch (connection.GetCallEndReason()) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByCallForwarded: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " has forwarded the call" << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByRemoteUser: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " has cleared the call" << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByCallerAbort: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " has stopped calling" << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByRefusal: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " did not accept your call" << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByRemoteBusy: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " was busy" << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByRemoteCongestion: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Congested link to " << remoteName << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByNoAnswer: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " did not answer your call" << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByTransportFail: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Call with " << remoteName << " ended abnormally" << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByCapabilityExchange: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Could not find common codec with " << remoteName << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByNoAccept: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Did not accept incoming call from " << remoteName << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByAnswerDenied: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Refused incoming call from " << remoteName << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByNoUser: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Remote endpoint could not find user: " << remoteName << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByNoBandwidth: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Call to " << remoteName << " aborted, insufficient bandwidth." << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByUnreachable: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " could not be reached." << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByHostOffline: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- " << remoteName << " is not online." << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByNoEndPoint: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- No phone running for " << remoteName << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		case H323Connection::EndedByConnectFail: | 
					
						
							|  |  |  | 			if (h323debug) { | 
					
						
							|  |  |  | 				cout << "-- Transport error calling " << remoteName << endl; | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			break; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		default: | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			if (h323debug) | 
					
						
							| 
									
										
										
										
											2004-01-06 16:43:24 +00:00
										 |  |  | 				cout << " -- Call with " << remoteName << " completed (" << connection.GetCallEndReason() << ")" << endl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-01-06 16:43:24 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	if (connection.IsEstablished()) { | 
					
						
							|  |  |  | 		if (h323debug) { | 
					
						
							|  |  |  | 			cout << "\t-- Call duration " << setprecision(0) << setw(5) << (PTime() - connection.GetConnectionStartTime()) << endl; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}	 | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 	/* Invoke the PBX application registered callback */ | 
					
						
							| 
									
										
										
										
											2005-05-19 16:17:08 +00:00
										 |  |  | 	on_connection_cleared(connection.GetCallReference(), clearedCallToken); | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 	return; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | H323Connection * MyH323EndPoint::CreateConnection(unsigned callReference, void *o) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	unsigned options = 0; | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	call_options_t *opts = (call_options_t *)o; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	if (opts && opts->noFastStart) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		options |= H323Connection::FastStartOptionDisable; | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2004-09-21 18:42:37 +00:00
										 |  |  | 		options |= H323Connection::FastStartOptionEnable; | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	if (opts && opts->noH245Tunneling) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		options |= H323Connection::H245TunnelingOptionDisable; | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2004-09-21 18:42:37 +00:00
										 |  |  | 		options |= H323Connection::H245TunnelingOptionEnable; | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | /* Disable until I can figure out the proper way to deal with this */ | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | #if 0
 | 
					
						
							|  |  |  | 	if (opts->noSilenceSuppression) { | 
					
						
							|  |  |  | 		options |= H323Connection::SilenceSuppresionOptionDisable; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		options |= H323Connection::SilenceSUppressionOptionEnable; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  | 	return new MyH323Connection(*this, callReference, options); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | /* MyH323Connection Implementation */     | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | MyH323Connection::MyH323Connection(MyH323EndPoint & ep, unsigned callReference, | 
					
						
							|  |  |  | 							unsigned options) | 
					
						
							|  |  |  | 	: H323Connection(ep, callReference, options) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	cause = -1; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "	== New H.323 Connection created." << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | MyH323Connection::~MyH323Connection() | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "	== H.323 Connection deleted." << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | BOOL MyH323Connection::OnReceivedProgress(const H323SignalPDU &pdu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	BOOL isInband; | 
					
						
							|  |  |  | 	unsigned pi; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!H323Connection::OnReceivedProgress(pdu)) { | 
					
						
							|  |  |  | 		return FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!pdu.GetQ931().GetProgressIndicator(pi)) | 
					
						
							|  |  |  | 		pi = 0; | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\t- Progress Indicator: " << pi << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	switch(pi) { | 
					
						
							|  |  |  | 	case Q931::ProgressNotEndToEndISDN: | 
					
						
							|  |  |  | 	case Q931::ProgressInbandInformationAvailable: | 
					
						
							|  |  |  | 		isInband = TRUE; | 
					
						
							|  |  |  | 		break; | 
					
						
							|  |  |  | 	default: | 
					
						
							|  |  |  | 		isInband = FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	on_progress(GetCallReference(), (const char *)GetCallToken(), isInband); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	return connectionState != ShuttingDownConnection; | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | H323Connection::AnswerCallResponse MyH323Connection::OnAnswerCall(const PString & caller, | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 								  const H323SignalPDU & setupPDU, | 
					
						
							| 
									
										
										
										
											2004-09-21 18:42:37 +00:00
										 |  |  | 								  H323SignalPDU & /*connectPDU*/) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	unsigned pi; | 
					
						
							| 
									
										
										
										
											2004-09-19 16:53:01 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-09-21 18:42:37 +00:00
										 |  |  |                cout << "\t=-= In OnAnswerCall for call " << GetCallReference() << endl; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	if (connectionState == ShuttingDownConnection) | 
					
						
							|  |  |  | 		return H323Connection::AnswerCallDenied; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	if (!setupPDU.GetQ931().GetProgressIndicator(pi)) { | 
					
						
							|  |  |  | 		pi = 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\t\t- Progress Indicator: " << pi << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (progressAlert) { | 
					
						
							|  |  |  | 		pi = progressAlert; | 
					
						
							|  |  |  | 	} else if (pi == Q931::ProgressOriginNotISDN) { | 
					
						
							|  |  |  | 		pi = Q931::ProgressInbandInformationAvailable; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (pi) { | 
					
						
							|  |  |  | 		alertingPDU->GetQ931().SetProgressIndicator(pi); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\t\t- Inserting PI of " << pi << " into ALERTING message" << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	if (!on_answer_call(GetCallReference(), (const char *)GetCallToken())) { | 
					
						
							| 
									
										
										
										
											2004-06-15 20:56:06 +00:00
										 |  |  | 		return H323Connection::AnswerCallDenied; | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	/* The call will be answered later with "AnsweringCall()" function.
 | 
					
						
							|  |  |  | 	 */  | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	return H323Connection::AnswerCallDeferredWithMedia; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | BOOL MyH323Connection::OnAlerting(const H323SignalPDU & alertingPDU, const PString & username) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	        cout << "\t=-= In OnAlerting for call " << GetCallReference() | 
					
						
							| 
									
										
										
										
											2004-09-21 18:42:37 +00:00
										 |  |  | 	              << ": sessionId=" << sessionId << endl; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |                  cout << "\t-- Ringing phone for \"" << username << "\"" << endl; | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (on_progress) { | 
					
						
							|  |  |  | 		BOOL isInband; | 
					
						
							|  |  |  | 		unsigned alertingPI; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		if (!alertingPDU.GetQ931().GetProgressIndicator(alertingPI)) { | 
					
						
							|  |  |  | 			alertingPI = 0; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		if (h323debug) { | 
					
						
							|  |  |  | 			cout << "\t\t- Progress Indicator: " << alertingPI << endl; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 		switch(alertingPI) { | 
					
						
							|  |  |  | 		case Q931::ProgressNotEndToEndISDN: | 
					
						
							|  |  |  | 		case Q931::ProgressInbandInformationAvailable: | 
					
						
							|  |  |  | 			isInband = TRUE; | 
					
						
							|  |  |  | 			break; | 
					
						
							|  |  |  | 		default: | 
					
						
							|  |  |  | 			isInband = FALSE; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		on_progress(GetCallReference(), (const char *)GetCallToken(), isInband); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  |         on_chan_ringing(GetCallReference(), (const char *)GetCallToken() ); | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  |         return connectionState != ShuttingDownConnection; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL MyH323Connection::OnReceivedSignalSetup(const H323SignalPDU & setupPDU) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	call_details_t cd; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	PString sourceE164; | 
					
						
							|  |  |  | 	PString destE164; | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  | 	PString sourceName; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	PString sourceAliases;	 | 
					
						
							|  |  |  | 	PString destAliases; | 
					
						
							|  |  |  | 	PIPSocket::Address Ip; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	WORD sourcePort; | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 	char *s, *s1;  | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << ("\t--Received SETUP message\n"); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	if (connectionState == ShuttingDownConnection) | 
					
						
							|  |  |  | 		return FALSE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	sourceAliases = setupPDU.GetSourceAliases(); | 
					
						
							|  |  |  | 	destAliases = setupPDU.GetDestinationAlias(); | 
					
						
							|  |  |  | 			 | 
					
						
							|  |  |  | 	sourceE164 = ""; | 
					
						
							|  |  |  | 	setupPDU.GetSourceE164(sourceE164); | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  | 	sourceName = ""; | 
					
						
							|  |  |  | 	sourceName=setupPDU.GetQ931().GetDisplayName(); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	destE164 = ""; | 
					
						
							|  |  |  | 	setupPDU.GetDestinationE164(destE164); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  | 	/* Convert complex strings */ | 
					
						
							|  |  |  | 	//  FIXME: deal more than one source alias 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |     	if ((s = strchr(sourceAliases, ' ')) != NULL) { | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  |                 *s = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |     	if ((s = strchr(sourceAliases, '\t')) != NULL) { | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  |                 *s = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |  	if ((s1 = strchr(destAliases, ' ')) != NULL) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |          	*s1 = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if ((s1 = strchr(destAliases, '\t')) != NULL) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |          	*s1 = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-19 16:17:08 +00:00
										 |  |  | 	memset(&cd, 0, sizeof(cd)); | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 	cd.call_reference = GetCallReference(); | 
					
						
							| 
									
										
										
										
											2004-07-20 21:04:16 +00:00
										 |  |  | 	cd.call_token = strdup((const char *)GetCallToken()); | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	cd.call_source_aliases = strdup((const char *)sourceAliases); | 
					
						
							| 
									
										
										
										
											2004-07-20 21:04:16 +00:00
										 |  |  | 	cd.call_dest_alias = strdup((const char *)destAliases); | 
					
						
							|  |  |  | 	cd.call_source_e164 = strdup((const char *)sourceE164); | 
					
						
							|  |  |  | 	cd.call_dest_e164 = strdup((const char *)destE164); | 
					
						
							|  |  |  | 	cd.call_source_name = strdup((const char *)sourceName); | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	GetSignallingChannel()->GetRemoteAddress().GetIpAndPort(Ip, sourcePort); | 
					
						
							| 
									
										
										
										
											2004-07-20 21:04:16 +00:00
										 |  |  |  	cd.sourceIp = strdup((const char *)Ip.AsString()); | 
					
						
							| 
									
										
										
										
											2004-05-20 21:56:12 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	/* Notify Asterisk of the request */ | 
					
						
							| 
									
										
										
										
											2005-05-19 16:17:08 +00:00
										 |  |  | 	call_options_t *res = on_incoming_call(&cd); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (!res) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			cout << "	-- Call Failed" << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	progressSetup = res->progress_setup; | 
					
						
							|  |  |  | 	progressAlert = res->progress_alert; | 
					
						
							|  |  |  | 	dtmfCodec = (RTP_DataFrame::PayloadTypes)res->dtmfcodec; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return H323Connection::OnReceivedSignalSetup(setupPDU); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL MyH323Connection::OnSendSignalSetup(H323SignalPDU & setupPDU) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	call_details_t cd; | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 	char *s, *s1; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) {  | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "	-- Sending SETUP message" << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-16 02:03:19 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	if (connectionState == ShuttingDownConnection) | 
					
						
							|  |  |  | 		return FALSE; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-16 02:03:19 +00:00
										 |  |  | 	if (!ast_cid_num.IsEmpty()) { | 
					
						
							|  |  |  | 		setupPDU.GetQ931().SetCallingPartyNumber(ast_cid_num); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!ast_cid_name.IsEmpty()) { | 
					
						
							|  |  |  | 		setupPDU.GetQ931().SetDisplayName(ast_cid_name); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	sourceAliases = setupPDU.GetSourceAliases(); | 
					
						
							|  |  |  | 	destAliases = setupPDU.GetDestinationAlias(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sourceE164 = ""; | 
					
						
							|  |  |  | 	setupPDU.GetSourceE164(sourceE164); | 
					
						
							|  |  |  | 	destE164 = ""; | 
					
						
							|  |  |  | 	setupPDU.GetDestinationE164(destE164); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  | 	/* Convert complex strings */ | 
					
						
							|  |  |  | 	//  FIXME: deal more than one source alias 
 | 
					
						
							| 
									
										
										
										
											2004-05-18 10:32:34 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |     	if ((s = strchr(sourceAliases, ' ')) != NULL) { | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  |                 *s = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |     	if ((s = strchr(sourceAliases, '\t')) != NULL) { | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  |                 *s = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  |     	if ((s1 = strchr(destAliases, ' ')) != NULL) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |         	 *s1 = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	if ((s1 = strchr(destAliases, '\t')) != NULL) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |          	*s1 = '\0'; | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-05-19 16:17:08 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	memset(&cd, 0, sizeof(cd)); | 
					
						
							| 
									
										
										
										
											2004-07-21 16:36:10 +00:00
										 |  |  | 	cd.call_reference = GetCallReference(); | 
					
						
							|  |  |  | 	cd.call_token = strdup((const char *)GetCallToken()); | 
					
						
							|  |  |  | 	cd.call_source_aliases = strdup((const char *)sourceAliases); | 
					
						
							|  |  |  | 	cd.call_dest_alias = strdup((const char *)destAliases); | 
					
						
							|  |  |  | 	cd.call_source_e164 = strdup((const char *)sourceE164); | 
					
						
							|  |  |  | 	cd.call_dest_e164 = strdup((const char *)destE164); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-19 16:17:08 +00:00
										 |  |  | 	int res = on_outgoing_call(&cd); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	if (!res) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout << "\t-- Call Failed" << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (progressSetup) { | 
					
						
							|  |  |  | 		setupPDU.GetQ931().SetProgressIndicator(progressSetup); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return H323Connection::OnSendSignalSetup(setupPDU); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-12 00:55:52 +00:00
										 |  |  | BOOL MyH323Connection::OnSendReleaseComplete(H323SignalPDU & releaseCompletePDU) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "\t-- Sending RELEASE COMPLETE" << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	if (cause > 0) | 
					
						
							|  |  |  | 		releaseCompletePDU.GetQ931().SetCause((Q931::CauseValues)cause); | 
					
						
							| 
									
										
										
										
											2003-05-12 00:55:52 +00:00
										 |  |  | 	return H323Connection::OnSendReleaseComplete(releaseCompletePDU); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL MyH323Connection::OnReceivedFacility(const H323SignalPDU & pdu) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "\t-- Received Facility message... " << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	}	 | 
					
						
							| 
									
										
										
										
											2003-05-12 00:55:52 +00:00
										 |  |  | 	return H323Connection::OnReceivedFacility(pdu); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | void MyH323Connection::OnReceivedReleaseComplete(const H323SignalPDU & pdu) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout <<  "\t-- Received RELEASE COMPLETE message..." << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	if (on_hangup) | 
					
						
							|  |  |  | 		on_hangup(GetCallReference(), (const char *)GetCallToken(), pdu.GetQ931().GetCause()); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return H323Connection::OnReceivedReleaseComplete(pdu); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | BOOL MyH323Connection::OnClosingLogicalChannel(H323Channel & channel) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "\t-- Closing logical channel..." << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return H323Connection::OnClosingLogicalChannel(channel); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyH323Connection::SendUserInputTone(char tone, unsigned duration) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "\t-- Sending user input tone (" << tone << ") to remote" << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 	on_send_digit(GetCallReference(), tone, (const char *)GetCallToken());	 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	H323Connection::SendUserInputTone(tone, duration); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyH323Connection::OnUserInputTone(char tone, unsigned duration, unsigned logicalChannel, unsigned rtpTimestamp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (mode == H323_DTMF_INBAND) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout << "\t-- Received user input tone (" << tone << ") from remote" << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 		on_send_digit(GetCallReference(), tone, (const char *)GetCallToken()); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	H323Connection::OnUserInputTone(tone, duration, logicalChannel, rtpTimestamp); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void MyH323Connection::OnUserInputString(const PString &value) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (mode == H323_DTMF_RFC2833) { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout <<  "\t-- Received user input string (" << value << ") from remote." << endl; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | 		on_send_digit(GetCallReference(), value[0], (const char *)GetCallToken()); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	}	 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | void MyH323Connection::OnSendCapabilitySet(H245_TerminalCapabilitySet & pdu) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PINDEX i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	H323Connection::OnSendCapabilitySet(pdu); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	H245_ArrayOf_CapabilityTableEntry & tables = pdu.m_capabilityTable; | 
					
						
							|  |  |  | 	for(i = 0; i < tables.GetSize(); i++) | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		H245_CapabilityTableEntry & entry = tables[i]; | 
					
						
							|  |  |  | 		if (entry.HasOptionalField(H245_CapabilityTableEntry::e_capability)) { | 
					
						
							|  |  |  | 			H245_Capability & cap = entry.m_capability; | 
					
						
							|  |  |  | 			if (cap.GetTag() == H245_Capability::e_receiveRTPAudioTelephonyEventCapability) { | 
					
						
							|  |  |  | 				H245_AudioTelephonyEventCapability & atec = cap; | 
					
						
							|  |  |  | 				atec.m_dynamicRTPPayloadType = dtmfCodec; | 
					
						
							|  |  |  | 				on_set_rfc2833_payload(GetCallReference(), (const char *)GetCallToken(), (int)dtmfCodec); | 
					
						
							|  |  |  | 				if (h323debug) { | 
					
						
							|  |  |  | 					cout << "\t-- Transmitting RFC2833 on payload " << | 
					
						
							|  |  |  | 						atec.m_dynamicRTPPayloadType << endl; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | void MyH323Connection::OnSetLocalCapabilities() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (on_setcapabilities) | 
					
						
							|  |  |  | 		on_setcapabilities(GetCallReference(), (const char *)callToken); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | BOOL MyH323Connection::OnReceivedCapabilitySet(const H323Capabilities & remoteCaps, | 
					
						
							|  |  |  | 					       const H245_MultiplexCapability * muxCap, | 
					
						
							|  |  |  | 					       H245_TerminalCapabilitySetReject & reject) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (!H323Connection::OnReceivedCapabilitySet(remoteCaps, muxCap, reject)) { | 
					
						
							|  |  |  | 		return FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const H323Capability * cap = remoteCaps.FindCapability(H323_UserInputCapability::SubTypeNames[H323_UserInputCapability::SignalToneRFC2833]); | 
					
						
							|  |  |  | 	if (cap != NULL) { | 
					
						
							|  |  |  | 		RTP_DataFrame::PayloadTypes pt = ((H323_UserInputCapability*)cap)->GetPayloadType(); | 
					
						
							|  |  |  | 		on_set_rfc2833_payload(GetCallReference(), (const char *)GetCallToken(), (int)pt); | 
					
						
							|  |  |  | 		if (h323debug) { | 
					
						
							|  |  |  | 			cout << "\t-- Inbound RFC2833 on payload " << pt << endl; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return TRUE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | H323Channel * MyH323Connection::CreateRealTimeLogicalChannel(const H323Capability & capability,	 | 
					
						
							|  |  |  | 								   H323Channel::Directions dir, | 
					
						
							|  |  |  | 								   unsigned sessionID, | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 		 					           const H245_H2250LogicalChannelParameters * /*param*/, | 
					
						
							|  |  |  | 								   RTP_QOS * /*param*/ ) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	return new MyH323_ExternalRTPChannel(*this, capability, dir, sessionID); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** This callback function is invoked once upon creation of each
 | 
					
						
							|  |  |  |   * channel for an H323 session  | 
					
						
							|  |  |  |   */ | 
					
						
							|  |  |  | BOOL MyH323Connection::OnStartLogicalChannel(H323Channel & channel) | 
					
						
							|  |  |  | {     | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	/* Increase the count of channels we have open */ | 
					
						
							| 
									
										
										
										
											2004-05-25 02:27:59 +00:00
										 |  |  | 	channelsOpen++; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2005-05-21 16:27:57 +00:00
										 |  |  | 		cout << "\t-- Started logical channel: "; | 
					
						
							|  |  |  | 		cout << ((channel.GetDirection()==H323Channel::IsTransmitter)?"sending ":((channel.GetDirection()==H323Channel::IsReceiver)?"receiving ":" ")); | 
					
						
							|  |  |  | 		cout << (const char *)(channel.GetCapability()).GetFormatName() << endl; | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 		cout <<  "\t\t-- channelsOpen = " << channelsOpen << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	return connectionState != ShuttingDownConnection; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | void MyH323Connection::SetCapabilities(int cap, int dtmfMode) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	int g711Frames = 20; | 
					
						
							|  |  |  | //	int gsmFrames  = 4;
 | 
					
						
							|  |  |  | 	PINDEX lastcap = -1; /* last common capability index */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 	if (cap & AST_FORMAT_SPEEX) { | 
					
						
							|  |  |  | 		/* Not real sure if Asterisk acutally supports all
 | 
					
						
							|  |  |  | 		   of the various different bit rates so add them  | 
					
						
							|  |  |  | 		   all and figure it out later*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		localCapabilities.SetCapability(0, 0, new SpeexNarrow2AudioCapability()); | 
					
						
							|  |  |  | 		localCapabilities.SetCapability(0, 0, new SpeexNarrow3AudioCapability()); | 
					
						
							|  |  |  | 		localCapabilities.SetCapability(0, 0, new SpeexNarrow4AudioCapability()); | 
					
						
							|  |  |  | 		localCapabilities.SetCapability(0, 0, new SpeexNarrow5AudioCapability()); | 
					
						
							|  |  |  | 		localCapabilities.SetCapability(0, 0, new SpeexNarrow6AudioCapability()); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | #endif 
 | 
					
						
							|  |  |  | 	if (cap & AST_FORMAT_G729A) { | 
					
						
							|  |  |  | 		AST_G729ACapability *g729aCap; | 
					
						
							|  |  |  | 		AST_G729Capability *g729Cap; | 
					
						
							|  |  |  | 		lastcap = localCapabilities.SetCapability(0, 0, g729aCap = new AST_G729ACapability); | 
					
						
							|  |  |  | 		lastcap = localCapabilities.SetCapability(0, 0, g729Cap = new AST_G729Capability); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	if (cap & AST_FORMAT_G723_1) { | 
					
						
							|  |  |  | 		H323_G7231Capability *g7231Cap; | 
					
						
							|  |  |  | 		lastcap = localCapabilities.SetCapability(0, 0, g7231Cap = new H323_G7231Capability); | 
					
						
							|  |  |  | 	}  | 
					
						
							|  |  |  | #if 0
 | 
					
						
							|  |  |  | 	if (cap & AST_FORMAT_GSM) { | 
					
						
							|  |  |  | 		H323_GSM0610Capability *gsmCap; | 
					
						
							|  |  |  | 	    	lastcap = localCapabilities.SetCapability(0, 0, gsmCap = new H323_GSM0610Capability); | 
					
						
							|  |  |  | 	    	gsmCap->SetTxFramesInPacket(gsmFrames); | 
					
						
							|  |  |  | 	}  | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 	if (cap & AST_FORMAT_ULAW) { | 
					
						
							|  |  |  | 		H323_G711Capability *g711uCap; | 
					
						
							|  |  |  | 	    	lastcap = localCapabilities.SetCapability(0, 0, g711uCap = new H323_G711Capability(H323_G711Capability::muLaw)); | 
					
						
							|  |  |  | 		g711uCap->SetTxFramesInPacket(g711Frames); | 
					
						
							|  |  |  | 	}  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (cap & AST_FORMAT_ALAW) { | 
					
						
							|  |  |  | 		H323_G711Capability *g711aCap; | 
					
						
							|  |  |  | 		lastcap = localCapabilities.SetCapability(0, 0, g711aCap = new H323_G711Capability(H323_G711Capability::ALaw)); | 
					
						
							|  |  |  | 		g711aCap->SetTxFramesInPacket(g711Frames); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lastcap++; | 
					
						
							|  |  |  | 	lastcap = localCapabilities.SetCapability(0, lastcap, new H323_UserInputCapability(H323_UserInputCapability::HookFlashH245)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	lastcap++; | 
					
						
							|  |  |  | 	mode = dtmfMode; | 
					
						
							|  |  |  | 	if (dtmfMode == H323_DTMF_INBAND) { | 
					
						
							|  |  |  | 		localCapabilities.SetCapability(0, lastcap, new H323_UserInputCapability(H323_UserInputCapability::SignalToneH245)); | 
					
						
							|  |  |  | 		sendUserInputMode = SendUserInputAsTone; | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		localCapabilities.SetCapability(0, lastcap, new H323_UserInputCapability(H323_UserInputCapability::SignalToneRFC2833)); | 
					
						
							|  |  |  | 		sendUserInputMode = SendUserInputAsInlineRFC2833; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout <<  "Allowed Codecs:\n\t" << setprecision(2) << localCapabilities << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-20 14:29:36 +00:00
										 |  |  | /* MyH323_ExternalRTPChannel */ | 
					
						
							|  |  |  | MyH323_ExternalRTPChannel::MyH323_ExternalRTPChannel(MyH323Connection & connection, | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  | 						     const H323Capability & capability, | 
					
						
							|  |  |  |                                                      Directions direction, | 
					
						
							|  |  |  |                                                      unsigned id) | 
					
						
							|  |  |  |  : H323_ExternalRTPChannel::H323_ExternalRTPChannel(connection, capability, direction, id) | 
					
						
							|  |  |  | {    | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	struct rtp_info *info; | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	/* Determine the Local (A side) IP Address and port */ | 
					
						
							|  |  |  | 	info = on_external_rtp_create(connection.GetCallReference(), (const char *)connection.GetCallToken());  | 
					
						
							|  |  |  | 	if (!info) { | 
					
						
							|  |  |  | 		cout << "\tERROR: on_external_rtp_create failure" << endl; | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2004-10-22 19:04:02 +00:00
										 |  |  | 		localIpAddr = info->addr; | 
					
						
							|  |  |  | 		localPort = info->port; | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 		/* tell the H.323 stack  */  | 
					
						
							|  |  |  | 		SetExternalAddress(H323TransportAddress(localIpAddr, localPort), H323TransportAddress(localIpAddr, localPort + 1)); | 
					
						
							|  |  |  | 		/* clean up allocated memory */ | 
					
						
							|  |  |  | 		free(info); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	/* Get the payload code	*/ | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	OpalMediaFormat format(capability.GetFormatName(), FALSE); | 
					
						
							|  |  |  | 	payloadCode = format.GetPayloadType(); | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  | }  | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | MyH323_ExternalRTPChannel::~MyH323_ExternalRTPChannel()  | 
					
						
							| 
									
										
										
										
											2004-03-20 14:29:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\tExternalRTPChannel Destroyed" << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-03-20 14:29:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | BOOL MyH323_ExternalRTPChannel::Start(void) | 
					
						
							| 
									
										
										
										
											2004-03-20 14:29:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	/* Call ancestor first */ | 
					
						
							|  |  |  | 	if (!H323_ExternalRTPChannel::Start()) { | 
					
						
							|  |  |  | 		return FALSE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-11 13:20:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\t\tExternal RTP Session Starting" << endl; | 
					
						
							|  |  |  | 		cout << "\t\tRTP channel id " << sessionID << " parameters:" << endl; | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-03 01:41:32 +00:00
										 |  |  | 	/* Collect the remote information */ | 
					
						
							|  |  |  | 	H323_ExternalRTPChannel::GetRemoteAddress(remoteIpAddr, remotePort); | 
					
						
							| 
									
										
										
										
											2005-05-11 13:20:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-11-03 01:41:32 +00:00
										 |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "\t\t-- remoteIpAddress: " << remoteIpAddr << endl; | 
					
						
							|  |  |  | 		cout << "\t\t-- remotePort: " << remotePort << endl; | 
					
						
							|  |  |  | 		cout << "\t\t-- ExternalIpAddress: " <<  localIpAddr << endl; | 
					
						
							|  |  |  | 		cout << "\t\t-- ExternalPort: " << localPort << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	/* Notify Asterisk of remote RTP information */ | 
					
						
							|  |  |  | 	on_start_rtp_channel(connection.GetCallReference(), (const char *)remoteIpAddr.AsString(), remotePort,  | 
					
						
							|  |  |  | 		(const char *)connection.GetCallToken(), (int)payloadCode); | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	return TRUE; | 
					
						
							| 
									
										
										
										
											2004-05-25 02:27:59 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | BOOL MyH323_ExternalRTPChannel::OnReceivedAckPDU(const H245_H2250LogicalChannelAckParameters & param) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PIPSocket::Address remoteIpAddress; | 
					
						
							|  |  |  | 	WORD remotePort; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							|  |  |  | 		cout << "	MyH323_ExternalRTPChannel::OnReceivedAckPDU" << endl; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (H323_ExternalRTPChannel::OnReceivedAckPDU(param)) { | 
					
						
							|  |  |  | 		GetRemoteAddress(remoteIpAddress, remotePort); | 
					
						
							|  |  |  | 		if (h323debug) { | 
					
						
							|  |  |  | 			cout << "		-- remoteIpAddress: " << remoteIpAddress << endl; | 
					
						
							|  |  |  | 			cout << "		-- remotePort: " << remotePort << endl; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		on_start_rtp_channel(connection.GetCallReference(), (const char *)remoteIpAddress.AsString(), | 
					
						
							| 
									
										
										
										
											2004-12-21 00:07:56 +00:00
										 |  |  | 				remotePort, (const char *)connection.GetCallToken(), (int)payloadCode); | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 		return TRUE; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return FALSE; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | /** IMPLEMENTATION OF C FUNCTIONS */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * The extern "C" directive takes care for  | 
					
						
							|  |  |  |  * the ANSI-C representation of linkable symbols  | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2004-05-25 02:27:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | extern "C" { | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | int h323_end_point_exist(void) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	if (!endPoint) { | 
					
						
							|  |  |  | 		return 0; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 1; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2004-10-04 10:18:06 +00:00
										 |  |  | void h323_end_point_create(void) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	channelsOpen = 0; | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	logstream = new PAsteriskLog(); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	localProcess = new MyProcess();	 | 
					
						
							|  |  |  | 	localProcess->Main(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void h323_gk_urq(void) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << " ERROR: [h323_gk_urq] No Endpoint, this is bad" << endl; | 
					
						
							|  |  |  | 		return; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	}	 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	endPoint->RemoveGatekeeper(); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void h323_debug(int flag, unsigned level) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (flag) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		PTrace:: SetLevel(level);  | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} else {  | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		PTrace:: SetLevel(0);  | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | /** Installs the callback functions on behalf of the PBX application  */ | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | void h323_callback_register(setup_incoming_cb  	ifunc, | 
					
						
							|  |  |  | 			    setup_outbound_cb  	sfunc, | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  |  			    on_rtp_cb   	rtpfunc, | 
					
						
							|  |  |  | 			    start_rtp_cb   	lfunc, | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  |  			    clear_con_cb	clfunc, | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  |  			    chan_ringing_cb     rfunc, | 
					
						
							|  |  |  | 			    con_established_cb 	efunc, | 
					
						
							| 
									
										
										
										
											2004-06-15 20:56:06 +00:00
										 |  |  |  			    send_digit_cb	dfunc, | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  |  			    answer_call_cb	acfunc, | 
					
						
							|  |  |  | 			    progress_cb		pgfunc, | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 			    rfc2833_cb		dtmffunc, | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | 			    hangup_cb		hangupfunc, | 
					
						
							|  |  |  | 			    setcapabilities_cb	capabilityfunc) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	on_incoming_call = ifunc; | 
					
						
							|  |  |  | 	on_outgoing_call = sfunc; | 
					
						
							| 
									
										
										
										
											2004-10-10 12:20:18 +00:00
										 |  |  | 	on_external_rtp_create = rtpfunc; | 
					
						
							|  |  |  | 	on_start_rtp_channel = lfunc; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	on_connection_cleared = clfunc; | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  | 	on_chan_ringing = rfunc; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	on_connection_established = efunc; | 
					
						
							|  |  |  | 	on_send_digit = dfunc; | 
					
						
							| 
									
										
										
										
											2004-06-15 20:56:06 +00:00
										 |  |  | 	on_answer_call = acfunc; | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	on_progress = pgfunc; | 
					
						
							|  |  |  | 	on_set_rfc2833_payload = dtmffunc; | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	on_hangup = hangupfunc; | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | 	on_setcapabilities = capabilityfunc; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /**
 | 
					
						
							|  |  |  |  * Add capability to the capability table of the end point.  | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | int h323_set_capabilities(const char *token, int cap, int dtmfMode) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | 	MyH323Connection *conn; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2005-05-21 16:27:57 +00:00
										 |  |  | 		cout << " ERROR: [h323_set_capablities] No Endpoint, this is bad" << endl; | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (!token || !*token) { | 
					
						
							|  |  |  | 		cout << " ERROR: [h323_set_capabilities] Invalid call token specified." << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | 	PString myToken(token); | 
					
						
							|  |  |  | 	conn = (MyH323Connection *)endPoint->FindConnectionWithLock(myToken); | 
					
						
							|  |  |  | 	if (!conn) { | 
					
						
							| 
									
										
										
										
											2005-05-21 16:27:57 +00:00
										 |  |  | 		cout << " ERROR: [h323_set_capabilities] Unable to find connection " << token << endl; | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | 		return 1; | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2005-05-19 19:13:19 +00:00
										 |  |  | 	conn->SetCapabilities(cap, dtmfMode); | 
					
						
							|  |  |  | 	conn->Unlock(); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** Start the H.323 listener */ | 
					
						
							| 
									
										
										
										
											2003-05-31 18:42:09 +00:00
										 |  |  | int h323_start_listener(int listenPort, struct sockaddr_in bindaddr) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "ERROR: [h323_start_listener] No Endpoint, this is bad!" << endl; | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	PIPSocket::Address interfaceAddress(bindaddr.sin_addr); | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	if (!listenPort) { | 
					
						
							| 
									
										
										
										
											2003-05-20 23:36:40 +00:00
										 |  |  | 		listenPort = 1720; | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-01-06 16:43:24 +00:00
										 |  |  | 	/** H.323 listener */   | 
					
						
							|  |  |  | 	H323ListenerTCP *tcpListener; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	tcpListener = new H323ListenerTCP(*endPoint, interfaceAddress, (WORD)listenPort); | 
					
						
							|  |  |  | 	if (!endPoint->StartListener(tcpListener)) { | 
					
						
							|  |  |  | 		cout << "ERROR: Could not open H.323 listener port on " << ((H323ListenerTCP *) tcpListener)->GetListenerPort() << endl; | 
					
						
							| 
									
										
										
										
											2003-06-01 22:13:29 +00:00
										 |  |  | 		delete tcpListener; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 		 | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-06-01 22:13:29 +00:00
										 |  |  | 	cout << "  == H.323 listener started" << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  |   | 
					
						
							|  |  |  | int h323_set_alias(struct oh323_alias *alias) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-03-20 14:24:20 +00:00
										 |  |  | 	char *p; | 
					
						
							|  |  |  | 	char *num; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	PString h323id(alias->name); | 
					
						
							| 
									
										
										
										
											2004-03-20 14:24:20 +00:00
										 |  |  | 	PString e164(alias->e164); | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 	char *prefix; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "ERROR: [h323_set_alias] No Endpoint, this is bad!" << endl; | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	cout << "== Adding alias \"" << h323id << "\" to endpoint" << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	endPoint->AddAliasName(h323id);	 | 
					
						
							|  |  |  | 	endPoint->RemoveAliasName(localProcess->GetUserName()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-20 14:24:20 +00:00
										 |  |  | 	if (!e164.IsEmpty()) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		cout << "== Adding E.164 \"" << e164 << "\" to endpoint" << endl; | 
					
						
							| 
									
										
										
										
											2004-03-20 14:24:20 +00:00
										 |  |  | 		endPoint->AddAliasName(e164); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-03-20 14:24:20 +00:00
										 |  |  | 	if (strlen(alias->prefix)) { | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 		p = prefix = strdup(alias->prefix); | 
					
						
							|  |  |  | 		while((num = strsep(&p, ",")) != (char *)NULL) { | 
					
						
							| 
									
										
										
										
											2005-05-21 16:27:57 +00:00
										 |  |  | 			cout << "== Adding Prefix \"" << num << "\" to endpoint" << endl; | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 			endPoint->SupportedPrefixes += PString(num); | 
					
						
							|  |  |  | 			endPoint->SetGateway(); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 		if (prefix) | 
					
						
							|  |  |  | 			free(prefix); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-06-03 07:11:52 +00:00
										 |  |  | void h323_set_id(char *id) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PString h323id(id); | 
					
						
							| 
									
										
										
										
											2003-06-04 07:14:10 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	if (h323debug) { | 
					
						
							| 
									
										
										
										
											2003-06-20 06:03:34 +00:00
										 |  |  | 		cout << "  == Using '" << h323id << "' as our H.323ID for this call" << endl; | 
					
						
							| 
									
										
										
										
											2003-06-04 07:14:10 +00:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2003-06-03 07:11:52 +00:00
										 |  |  | 	/* EVIL HACK */ | 
					
						
							|  |  |  | 	endPoint->SetLocalUserName(h323id); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-06 16:43:24 +00:00
										 |  |  | void h323_show_tokens(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	cout << "Current call tokens: " << setprecision(2) << endPoint->GetAllConnections() << endl; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | /** Establish Gatekeeper communiations, if so configured, 
 | 
					
						
							|  |  |  |   *	register aliases for the H.323 endpoint to respond to. | 
					
						
							|  |  |  |   */ | 
					
						
							|  |  |  | int h323_set_gk(int gatekeeper_discover, char *gatekeeper, char *secret) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PString gkName = PString(gatekeeper); | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	PString pass = PString(secret); | 
					
						
							| 
									
										
										
										
											2004-01-13 03:07:15 +00:00
										 |  |  | 	H323TransportUDP *rasChannel; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "ERROR: [h323_set_gk] No Endpoint, this is bad!" << endl; | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	if (!gatekeeper) { | 
					
						
							|  |  |  | 		cout << "Error: Gatekeeper cannot be NULL" << endl; | 
					
						
							|  |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (strlen(secret)) { | 
					
						
							|  |  |  | 		endPoint->SetGatekeeperPassword(pass); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (gatekeeper_discover) { | 
					
						
							|  |  |  | 		/* discover the gk using multicast */ | 
					
						
							|  |  |  | 		if (endPoint->DiscoverGatekeeper(new H323TransportUDP(*endPoint))) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout << "== Using " << (endPoint->GetGatekeeper())->GetName() << " as our Gatekeeper." << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout << "Warning: Could not find a gatekeeper." << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			return 1; | 
					
						
							|  |  |  | 		}	 | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2004-01-13 03:07:15 +00:00
										 |  |  | 		rasChannel = new H323TransportUDP(*endPoint); | 
					
						
							| 
									
										
										
										
											2004-01-11 02:22:32 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-13 03:07:15 +00:00
										 |  |  | 		if (!rasChannel) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout << "Error: No RAS Channel, this is bad" << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2004-01-13 03:07:15 +00:00
										 |  |  | 		if (endPoint->SetGatekeeper(gkName, rasChannel)) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout << "== Using " << (endPoint->GetGatekeeper())->GetName() << " as our Gatekeeper." << endl; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		} else { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 			cout << "Error registering with gatekeeper \"" << gkName << "\". " << endl; | 
					
						
							| 
									
										
										
										
											2003-06-01 22:13:29 +00:00
										 |  |  | 			/* XXX Maybe we should fire a new thread to attempt to re-register later and not kill asterisk here? */ | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 			return 1; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** Send a DTMF tone over the H323Connection with the
 | 
					
						
							|  |  |  |   * specified token. | 
					
						
							|  |  |  |   */ | 
					
						
							|  |  |  | void h323_send_tone(const char *call_token, char tone) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "ERROR: [h323_send_tone] No Endpoint, this is bad!" << endl; | 
					
						
							|  |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	PString token = PString(call_token); | 
					
						
							|  |  |  | 	endPoint->SendUserTone(token, tone); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** Make a call to the remote endpoint.
 | 
					
						
							|  |  |  |   */ | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | int h323_make_call(char *dest, call_details_t *cd, call_options_t *call_options) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	int res; | 
					
						
							|  |  |  | 	PString	token; | 
					
						
							| 
									
										
										
										
											2004-11-11 21:30:30 +00:00
										 |  |  | 	PString	host(dest); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-11-11 21:30:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	res = endPoint->MakeCall(host, token, &cd->call_reference, call_options); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	memcpy((char *)(cd->call_token), (const unsigned char *)token, token.GetLength()); | 
					
						
							|  |  |  | 	return res; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | int h323_clear_call(const char *call_token, int cause) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	H225_ReleaseCompleteReason dummy; | 
					
						
							| 
									
										
										
										
											2004-12-16 04:25:49 +00:00
										 |  |  | 	H323Connection::CallEndReason r = H323Connection::EndedByLocalUser; | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	MyH323Connection *connection; | 
					
						
							|  |  |  | 	const PString currentToken(call_token); | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	if (!h323_end_point_exist()) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return 1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-12-16 04:25:49 +00:00
										 |  |  | 	if (cause) { | 
					
						
							|  |  |  | 		r = H323TranslateToCallEndReason((Q931::CauseValues)(cause), dummy); | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 	connection = (MyH323Connection *)endPoint->FindConnectionWithLock(currentToken); | 
					
						
							|  |  |  | 	if (connection) { | 
					
						
							|  |  |  | 		connection->SetCause(cause); | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | 		connection->SetCallEndReason(r); | 
					
						
							| 
									
										
										
										
											2005-04-04 07:06:26 +00:00
										 |  |  | 		connection->Unlock(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	endPoint->ClearCall(currentToken, r); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  | /* Send Alerting PDU to H.323 caller */ | 
					
						
							|  |  |  | int h323_send_alerting(const char *token) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         const PString currentToken(token); | 
					
						
							|  |  |  |         H323Connection * connection; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  |         if (h323debug) { | 
					
						
							|  |  |  |         	cout << "\tSending alerting\n" << endl; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-05-20 07:07:18 +00:00
										 |  |  |         connection = endPoint->FindConnectionWithLock(currentToken); | 
					
						
							|  |  |  |         if (!connection) { | 
					
						
							|  |  |  |                 cout << "No connection found for " << token << endl; | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         connection->AnsweringCall(H323Connection::AnswerCallPending); | 
					
						
							|  |  |  |         connection->Unlock(); | 
					
						
							|  |  |  |         return 0;  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Send Progress PDU to H.323 caller */ | 
					
						
							|  |  |  | int h323_send_progress(const char *token) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |         const PString currentToken(token); | 
					
						
							|  |  |  |         H323Connection * connection; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         connection = endPoint->FindConnectionWithLock(currentToken); | 
					
						
							|  |  |  |         if (!connection) { | 
					
						
							|  |  |  |                 cout << "No connection found for " << token << endl; | 
					
						
							|  |  |  |                 return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         connection->AnsweringCall(H323Connection::AnswerCallDeferredWithMedia); | 
					
						
							|  |  |  |         connection->Unlock(); | 
					
						
							|  |  |  |         return 0;   | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | /** This function tells the h.323 stack to either 
 | 
					
						
							|  |  |  |     answer or deny an incoming call  */ | 
					
						
							|  |  |  | int h323_answering_call(const char *token, int busy)  | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	const PString currentToken(token); | 
					
						
							|  |  |  | 	H323Connection * connection; | 
					
						
							|  |  |  | 	 | 
					
						
							|  |  |  | 	connection = endPoint->FindConnectionWithLock(currentToken); | 
					
						
							|  |  |  | 	 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	if (!connection) { | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		cout << "No connection found for " << token << endl; | 
					
						
							|  |  |  | 		return -1; | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2004-07-21 16:36:10 +00:00
										 |  |  | 	if (!busy) { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							|  |  |  | 			cout << "\tAnswering call " << token << endl; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		connection->AnsweringCall(H323Connection::AnswerCallNow); | 
					
						
							|  |  |  | 	} else { | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 		if (h323debug) { | 
					
						
							|  |  |  | 			cout << "\tdenying call " << token << endl; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		connection->AnsweringCall(H323Connection::AnswerCallDenied); | 
					
						
							| 
									
										
										
										
											2004-07-21 16:36:10 +00:00
										 |  |  | 	} | 
					
						
							|  |  |  | 	connection->Unlock(); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int h323_show_codec(int fd, int argc, char *argv[]) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	cout <<  "Allowed Codecs:\n\t" << setprecision(2) << endPoint->GetCapabilities() << endl; | 
					
						
							|  |  |  | 	return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-01-06 16:43:24 +00:00
										 |  |  | int h323_soft_hangup(const char *data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	PString token(data); | 
					
						
							|  |  |  | 	BOOL result; | 
					
						
							| 
									
										
										
										
											2004-12-15 23:24:13 +00:00
										 |  |  | 	cout << "Soft hangup" << endl;	 | 
					
						
							| 
									
										
										
										
											2004-01-06 16:43:24 +00:00
										 |  |  | 	result = endPoint->ClearCall(token);	 | 
					
						
							|  |  |  | 	return result; | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* alas, this doesn't work :(   */ | 
					
						
							| 
									
										
										
										
											2004-07-22 04:24:50 +00:00
										 |  |  | void h323_native_bridge(const char *token, const char *them, char *capability) | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  | 	H323Channel *channel; | 
					
						
							| 
									
										
										
										
											2003-08-25 18:34:10 +00:00
										 |  |  | 	MyH323Connection *connection = (MyH323Connection *)endPoint->FindConnectionWithLock(token); | 
					
						
							| 
									
										
										
										
											2003-08-12 22:20:12 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2004-10-23 02:43:41 +00:00
										 |  |  | 	if (!connection) { | 
					
						
							| 
									
										
										
										
											2003-08-25 18:34:10 +00:00
										 |  |  | 		cout << "ERROR: No connection found, this is bad\n"; | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 		return; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-08-25 18:34:10 +00:00
										 |  |  | 	cout << "Native Bridge:  them [" << them << "]" << endl;  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	channel = connection->FindChannel(connection->sessionId, TRUE); | 
					
						
							|  |  |  | 	connection->bridging = TRUE; | 
					
						
							|  |  |  | 	connection->CloseLogicalChannelNumber(channel->GetNumber()); | 
					
						
							| 
									
										
										
										
											2003-12-18 19:54:18 +00:00
										 |  |  | 	 | 
					
						
							| 
									
										
										
										
											2003-08-25 18:34:10 +00:00
										 |  |  | 	connection->Unlock(); | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | 	return; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2005-05-11 13:39:33 +00:00
										 |  |  | #undef cout
 | 
					
						
							|  |  |  | void h323_end_process(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	if (endPoint) { | 
					
						
							|  |  |  | 		endPoint->ClearAllCalls(); | 
					
						
							|  |  |  | 		endPoint->RemoveListener(NULL); | 
					
						
							|  |  |  | 		delete endPoint; | 
					
						
							|  |  |  | 		endPoint = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	if (localProcess) { | 
					
						
							|  |  |  | 		delete localProcess; | 
					
						
							|  |  |  | 		localProcess = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 	PTrace::SetLevel(0); | 
					
						
							|  |  |  | 	PTrace::SetStream(&cout); | 
					
						
							|  |  |  | 	if (logstream) { | 
					
						
							|  |  |  | 		delete logstream; | 
					
						
							|  |  |  | 		logstream = NULL; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-03-31 07:13:36 +00:00
										 |  |  | } /* extern "C" */ | 
					
						
							| 
									
										
										
										
											2003-12-24 22:38:24 +00:00
										 |  |  | 
 |