1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Upgrade to latest version

This commit is contained in:
Roger Hardiman 2001-10-08 05:13:05 +00:00
parent 6ced5cf9d4
commit e9c9ef4a32
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=48548
4 changed files with 3 additions and 117 deletions

View File

@ -6,11 +6,10 @@
#
PORTNAME= opengatekeeper
PORTVERSION= 0.9a3
PORTREVISION= 2
PORTVERSION= 0.9a4
CATEGORIES= net
MASTER_SITES= http://download.sourceforge.net/OpenGatekeeper/
DISTNAME= opengate_0.9alpha3
DISTNAME= opengate_0.9alpha4
MAINTAINER= roger@FreeBSD.org

View File

@ -1 +1 @@
MD5 (opengate_0.9alpha3.tar.gz) = 6b2e6a9cbbda87c172da45576bb594d9
MD5 (opengate_0.9alpha4.tar.gz) = 68edf37cf6b977be9f7426488a20c119

View File

@ -1,45 +0,0 @@
*** Environ.cxx.orig Mon Jul 9 16:25:04 2001
--- Environ.cxx Mon Jul 9 16:19:03 2001
***************
*** 17,23 ****
--- 17,28 ----
*
* The Initial Developer of the Original Code is Egoboo Ltd.
*
+ * Contributor(s): Equivalence Pty Ltd
+ *
* $Log: Environ.cxx,v $
+ * Revision 2.0 2001/04/10 06:23:46 craigs
+ * Initial version from OpenGatekeeper project as of 10 April 2001
+ *
* Revision 1.4 2000/05/23 10:15:06 aunitt
* Added support for statically defined gateway prefixes.
*
*************** static H225_SupportedPrefix GetPrefix( c
*** 75,81 ****
{
H225_SupportedPrefix Result;
! Result.m_prefix.SetTag( H225_AliasAddress::e_e164 );
PASN_IA5String & IA5 = (PASN_IA5String &)Result.m_prefix;
IA5 = PrefixStr;
--- 80,86 ----
{
H225_SupportedPrefix Result;
! Result.m_prefix.SetTag( H225_AliasAddress::e_dialedDigits );
PASN_IA5String & IA5 = (PASN_IA5String &)Result.m_prefix;
IA5 = PrefixStr;
*************** void Environ::AddStaticPrefixes( H225_Ga
*** 140,143 ****
VoiceCaps.IncludeOptionalField( H225_VoiceCaps::e_supportedPrefixes );
VoiceCaps.m_supportedPrefixes = AdditionalPrefixes;
}
! }
--- 145,148 ----
VoiceCaps.IncludeOptionalField( H225_VoiceCaps::e_supportedPrefixes );
VoiceCaps.m_supportedPrefixes = AdditionalPrefixes;
}
! }

View File

@ -1,68 +0,0 @@
*** EndpointTabl.cxx.orig Mon Jul 9 16:24:58 2001
--- EndpointTabl.cxx Mon Jul 9 13:12:01 2001
***************
*** 17,23 ****
--- 17,28 ----
*
* The Initial Developer of the Original Code is Egoboo Ltd.
*
+ * Contributor(s): Equivalence Pty Ltd
+ *
* $Log: EndpointTabl.cxx,v $
+ * Revision 2.0 2001/04/10 06:23:46 craigs
+ * Initial version from OpenGatekeeper project as of 10 April 2001
+ *
* Revision 1.21 2000/05/25 14:25:30 aunitt
* Fixed bug that stopped gateway prefixes working.
*
*************** static bool IsPrefix( const H225_AliasAd
*** 220,226 ****
// Now check by type
switch ( Prefix.GetTag() )
{
! case H225_AliasAddress::e_e164 :
PrefixStr = static_cast<const PASN_IA5String &>(Prefix);
AliasStr = static_cast<const PASN_IA5String &>(Alias);
break;
--- 225,231 ----
// Now check by type
switch ( Prefix.GetTag() )
{
! case H225_AliasAddress::e_dialedDigits:
PrefixStr = static_cast<const PASN_IA5String &>(Prefix);
AliasStr = static_cast<const PASN_IA5String &>(Alias);
break;
*************** static bool IsPrefix( const H225_AliasAd
*** 235,241 ****
}
switch( PrefixPartyNumber.GetTag() )
{
! case H225_PartyNumber::e_publicNumber :
{
const H225_PublicPartyNumber & PublicPrefix = PrefixPartyNumber;
const H225_PublicPartyNumber & PublicAlias = AliasPartyNumber;
--- 240,246 ----
}
switch( PrefixPartyNumber.GetTag() )
{
! case H225_PartyNumber::e_e164Number:
{
const H225_PublicPartyNumber & PublicPrefix = PrefixPartyNumber;
const H225_PublicPartyNumber & PublicAlias = AliasPartyNumber;
*************** Endpoint EndpointTable::FindByPrefix( co
*** 1080,1086 ****
PWaitAndSignal MutexWait(TableMutex);
for ( PINDEX i=0; i < Alias.GetSize(); ++i )
{
! if ( ( Alias[i].GetTag() == H225_AliasAddress::e_e164 ) ||
( Alias[i].GetTag() == H225_AliasAddress::e_partyNumber )
)
{
--- 1085,1091 ----
PWaitAndSignal MutexWait(TableMutex);
for ( PINDEX i=0; i < Alias.GetSize(); ++i )
{
! if ( ( Alias[i].GetTag() == H225_AliasAddress::e_dialedDigits ) ||
( Alias[i].GetTag() == H225_AliasAddress::e_partyNumber )
)
{