mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 23:38:23 +00:00
Reworked chan_ooh323 channel module.
Many architectural and functional changes. Main changes are threading model chanes (many thread in ooh323 stack instead of one), modifications and improvements in signalling part, additional codecs support (726, speex), t38 mode support. This module tested and used in production environment. (closes issue #15285) Reported by: may213 Tested by: sles, c0w, OrNix Review: https://reviewboard.asterisk.org/r/324/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@227898 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -47,7 +47,7 @@ extern "C" {
|
||||
|
||||
|
||||
|
||||
#define MAX_IP_LEN 15
|
||||
#define MAX_IP_LEN 18
|
||||
#define DEFAULT_GKPORT 1719
|
||||
#define MULTICAST_GKADDRESS "224.0.1.41"
|
||||
#define MULTICAST_GKPORT 1718
|
||||
@@ -204,6 +204,7 @@ typedef struct ooGkClient{
|
||||
ASN1UINT arqTimeout;
|
||||
ASN1UINT drqTimeout;
|
||||
enum OOGkClientState state;
|
||||
ast_mutex_t Lock;
|
||||
} ooGkClient;
|
||||
|
||||
struct OOAliases;
|
||||
@@ -553,6 +554,15 @@ int ooGkClientSetCallbacks
|
||||
* @}
|
||||
*/
|
||||
|
||||
int ooGkClientReInit(ooGkClient *pGkClient);
|
||||
void ooGkClientFillVendor
|
||||
(ooGkClient *pGkClient, H225VendorIdentifier *pVendor );
|
||||
void ooGkClientPrintMessage
|
||||
(ooGkClient *pGkClient, ASN1OCTET *msg, ASN1UINT len);
|
||||
int ooGkClientSendIRR
|
||||
(ooGkClient *pGkClient, struct OOH323CallData *call);
|
||||
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user