mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-12 21:09:00 +00:00
IPv6 support for chan_ooh323
IPv6 support for ooh323, bindaddr, peers and users ip can be IPv4 or IPv6 addr correction for multi-homed mode (0.0.0.0 or :: bindaddr) can work in dual 6/4 mode with :: bindaddr gatekeeper mode isn't supported in v6 mode while (issue #18278) Reported by: may213 Patches: ipv6-ooh323.patch uploaded by may213 (license 454) Review: https://reviewboard.asterisk.org/r/1004/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@313482 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -47,7 +47,7 @@ extern "C" {
|
||||
|
||||
|
||||
|
||||
#define MAX_IP_LEN 18
|
||||
#define MAX_IP_LEN 2+8*4+7
|
||||
#define DEFAULT_GKPORT 1719
|
||||
#define MULTICAST_GKADDRESS "224.0.1.41"
|
||||
#define MULTICAST_GKPORT 1718
|
||||
@@ -181,9 +181,9 @@ typedef struct ooGkClient{
|
||||
OOCTXT msgCtxt;
|
||||
OOSOCKET rasSocket;
|
||||
int localRASPort;
|
||||
char localRASIP[20];
|
||||
char gkRasIP[20];
|
||||
char gkCallSignallingIP[20];
|
||||
char localRASIP[2+8*4+7];
|
||||
char gkRasIP[2+8*4+7];
|
||||
char gkCallSignallingIP[2+8*4+7];
|
||||
RasGatekeeperInfo gkInfo;
|
||||
int gkRasPort;
|
||||
int gkCallSignallingPort;
|
||||
|
||||
Reference in New Issue
Block a user