[Asterisk-cvs]
asterisk-addons/asterisk-ooh323c/src Makefile.am, 1.2,
1.3 Makefile.in, 1.2, 1.3 chan_h323.c, 1.2, 1.3
vphirke at lists.digium.com
vphirke at lists.digium.com
Thu Jun 16 15:40:03 CDT 2005
- Previous message: [Asterisk-cvs]
asterisk-addons/asterisk-ooh323c/ooh323c/tests/chansetup
Makefile.am, 1.1, 1.2 Makefile.in, 1.1, 1.2 h323peer.c, 1.2, 1.3
- Next message: [Asterisk-cvs] asterisk-addons/asterisk-ooh323c/ooh323c/src
Makefile.am, 1.3, 1.4 Makefile.in, 1.3, 1.4 dlist.h, 1.1,
1.2 eventHandler.h, 1.1, 1.2 ooCalls.h, 1.2,
1.3 ooCapability.c, 1.2, 1.3 ooCapability.h, 1.4,
1.5 ooGkClient.c, 1.1, 1.2 ooGkClient.h, 1.2, 1.3 ooLogChan.c,
1.1, 1.2 ooSocket.c, 1.2, 1.3 ooSocket.h, 1.2,
1.3 ooStackCmds.h, 1.3, 1.4 ooasn1.h, 1.2, 1.3 oochannels.c,
1.4, 1.5 oochannels.h, 1.4, 1.5 ooh245.c, 1.4, 1.5 ooh245.h,
1.2, 1.3 ooh323.c, 1.3, 1.4 ooh323.h, 1.2, 1.3 ooh323ep.h, 1.3,
1.4 ooports.c, 1.2, 1.3 ooports.h, 1.2, 1.3 ooq931.c, 1.3,
1.4 ooq931.h, 1.3, 1.4 ootrace.c, 1.2, 1.3 ootrace.h, 1.2,
1.3 ootypes.h, 1.3, 1.4 rtctype.h, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /usr/cvsroot/asterisk-addons/asterisk-ooh323c/src
In directory mongoose.digium.com:/tmp/cvs-serv25841/src
Modified Files:
Makefile.am Makefile.in chan_h323.c
Log Message:
Updated stack source
Index: Makefile.am
===================================================================
RCS file: /usr/cvsroot/asterisk-addons/asterisk-ooh323c/src/Makefile.am,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile.am 26 May 2005 13:34:36 -0000 1.2
+++ Makefile.am 16 Jun 2005 19:41:23 -0000 1.3
@@ -4,7 +4,7 @@
lib_LTLIBRARIES = libchan_h323.la
libchan_h323_la_LDFLAGS = -L$(top_builddir)/ooh323c/src -version-info 1:1:0
libchan_h323_la_SOURCES = chan_h323.h chan_h323.c ooh323cDriver.h ooh323cDriver.c
-libchan_h323_la_LIBADD = -lpthread -loostk
+libchan_h323_la_LIBADD = -lpthread -looh323c
INCLUDES = -I$(top_builddir)/ooh323c/src -I$(top_builddir)/ooh323c/src/h323
Index: Makefile.in
===================================================================
RCS file: /usr/cvsroot/asterisk-addons/asterisk-ooh323c/src/Makefile.in,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- Makefile.in 26 May 2005 13:34:36 -0000 1.2
+++ Makefile.in 16 Jun 2005 19:41:23 -0000 1.3
@@ -91,7 +91,7 @@
lib_LTLIBRARIES = libchan_h323.la
libchan_h323_la_LDFLAGS = -L$(top_builddir)/ooh323c/src -version-info 1:1:0
libchan_h323_la_SOURCES = chan_h323.h chan_h323.c ooh323cDriver.h ooh323cDriver.c
-libchan_h323_la_LIBADD = -lpthread -loostk
+libchan_h323_la_LIBADD = -lpthread -looh323c
INCLUDES = -I$(top_builddir)/ooh323c/src -I$(top_builddir)/ooh323c/src/h323
subdir = src
Index: chan_h323.c
===================================================================
RCS file: /usr/cvsroot/asterisk-addons/asterisk-ooh323c/src/chan_h323.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- chan_h323.c 3 Jun 2005 14:54:07 -0000 1.2
+++ chan_h323.c 16 Jun 2005 19:41:23 -0000 1.3
@@ -1294,19 +1294,16 @@
if(p->callerid_name){
ooCallSetCallerId(call, p->callerid_name);
}
- if(p->callerid_num)
+ /* if(p->callerid_num)
{
ooCallSetCallingPartyNumber(call, p->callerid_num);
}
+ */
if(!ast_strlen_zero(p->caller_h323id))
ooCallAddAliasH323ID(call, p->caller_h323id);
if(!ast_strlen_zero(p->caller_dialedDigits)){
ooCallAddAliasDialedDigits(call, p->caller_dialedDigits);
}
- if(!ast_strlen_zero(p->caller_email))
- ooCallAddAliasEmailID(call, p->caller_h323id);
- if(!ast_strlen_zero(p->caller_url))
- ooCallAddAliasURLID(call, p->caller_url);
if(!ast_strlen_zero(p->exten))
ooCallAddRemoteAliasH323ID(call, p->exten);
- Previous message: [Asterisk-cvs]
asterisk-addons/asterisk-ooh323c/ooh323c/tests/chansetup
Makefile.am, 1.1, 1.2 Makefile.in, 1.1, 1.2 h323peer.c, 1.2, 1.3
- Next message: [Asterisk-cvs] asterisk-addons/asterisk-ooh323c/ooh323c/src
Makefile.am, 1.3, 1.4 Makefile.in, 1.3, 1.4 dlist.h, 1.1,
1.2 eventHandler.h, 1.1, 1.2 ooCalls.h, 1.2,
1.3 ooCapability.c, 1.2, 1.3 ooCapability.h, 1.4,
1.5 ooGkClient.c, 1.1, 1.2 ooGkClient.h, 1.2, 1.3 ooLogChan.c,
1.1, 1.2 ooSocket.c, 1.2, 1.3 ooSocket.h, 1.2,
1.3 ooStackCmds.h, 1.3, 1.4 ooasn1.h, 1.2, 1.3 oochannels.c,
1.4, 1.5 oochannels.h, 1.4, 1.5 ooh245.c, 1.4, 1.5 ooh245.h,
1.2, 1.3 ooh323.c, 1.3, 1.4 ooh323.h, 1.2, 1.3 ooh323ep.h, 1.3,
1.4 ooports.c, 1.2, 1.3 ooports.h, 1.2, 1.3 ooq931.c, 1.3,
1.4 ooq931.h, 1.3, 1.4 ootrace.c, 1.2, 1.3 ootrace.h, 1.2,
1.3 ootypes.h, 1.3, 1.4 rtctype.h, 1.1, 1.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
More information about the svn-commits
mailing list