Search found 50 matches

by willamowius
Wed Oct 30, 2019 2:37 pm
Forum: GNU Gatekeeper (GnuGk)
Topic: GNU Gatekeeper 5.3
Replies: 0
Views: 30265

GNU Gatekeeper 5.3

GNU Gatekeeper 5.3 is out! You can download it from https://www.gnugk.org/h323download.html This release has a number of new features as well as some important bug fixes. Whats new ? LRQ loop detection to optimize calls flows between multiple neighbor gatekeepers This new feature has the potential t...
by willamowius
Fri Mar 01, 2019 6:53 pm
Forum: H.323 Plus (Open Source H.323 Stack)
Topic: How to remove terminal capability set in setup message?
Replies: 2
Views: 12923

Re: How to remove terminal capability set in setup message?

Note that the documentation for the method has a copy and paste bug.

I just fixed that in Github.
by willamowius
Fri Mar 01, 2019 6:50 pm
Forum: H.323 Plus (Open Source H.323 Stack)
Topic: How to remove terminal capability set in setup message?
Replies: 2
Views: 12923

Re: How to remove terminal capability set in setup message?

I think what you want to do is to disable H.245 in your Setup.

Just call

Code: Select all

DisableH245inSetup(true);
In your endpoint class.

See https://www.h323plus.org/api/classH323E ... b869ee8310
by willamowius
Mon Jan 07, 2019 7:32 am
Forum: GNU Gatekeeper (GnuGk)
Topic: GNU Gatekeeper 5.1
Replies: 0
Views: 30000

GNU Gatekeeper 5.1

I have released GNU Gatekeeper version 5.1. You can download it from https://www.gnugk.org/h323download.html The main new feature in this release is H.245 multiplexing. Together with the long supported RTP multiplexing it allows GnuGk to handle a large amount of calls from H.460 endpoints using just...
by willamowius
Sat Oct 13, 2018 7:28 pm
Forum: H.323 Plus (Open Source H.323 Stack)
Topic: ptlib cross compile for ios
Replies: 4
Views: 14462

Re: ptlib cross compile for ios

You need to add the iOS support.
by willamowius
Tue Oct 09, 2018 12:14 pm
Forum: H.323 Plus (Open Source H.323 Stack)
Topic: ptlib cross compile for ios
Replies: 4
Views: 14462

Re: ptlib cross compile for ios

First, you shouldn't use the latest version of PTLib on any OS for H323Plus. Also, I'm not sure if anyone has compiled PTLib on iOS before. The suggested PTLib version for H323Plus is the 2.10.9 fork that I maintain on Github: https://github.com/willamowius/ptlib Unfortunately that branch has buggy ...
by willamowius
Fri Apr 14, 2017 7:06 am
Forum: SIP / H.323 Interworking
Topic: Changing RTP audio port at SIP side and notifying H323endpoint
Replies: 2
Views: 23995

Re: Changing RTP audio port at SIP side and notifying H323endpoint

If you close the old audio channel and open a new one with new ports, your method should work.

But since you build a gateway anyway, why not keep the audio channel open and let the gateway proxy the media so the H.323 side can keep using the original port ?

Regards,
Jan
by willamowius
Mon Jan 16, 2017 10:17 am
Forum: H.323 Plus (Open Source H.323 Stack)
Topic: How to enable Early Media?
Replies: 4
Views: 16831

Re: How to enable Early Media?

I think what you are loking for is

DisableH245inSetup(false);
DisableFastStart(false);

Take a look at SimpleH323EndPoint::Initialise() in the sample application.

Regards,
Jan
by willamowius
Mon Jun 15, 2015 2:25 pm
Forum: H.323 Plus (Open Source H.323 Stack)
Topic: How to build a gk with H323GatekeeperServer
Replies: 1
Views: 14259

Re: How to build a gk with H323GatekeeperServer

You might want to check out the OpenSource GNU Gatekeeper: http://www.gnugk.org

Its highly customizable and there probably is no need to write a gatekeeper from scratch.