[Asterisk-cvs] asterisk/channels/h323 chan_h323.h,1.23,1.24
jeremy at lists.digium.com
jeremy at lists.digium.com
Tue Jul 20 21:03:05 CDT 2004
Update of /usr/cvsroot/asterisk/channels/h323
In directory localhost.localdomain:/tmp/cvs-serv20795
Modified Files:
chan_h323.h
Log Message:
const is evil?
Index: chan_h323.h
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/h323/chan_h323.h,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- chan_h323.h 17 Jul 2004 19:38:30 -0000 1.23
+++ chan_h323.h 21 Jul 2004 00:49:06 -0000 1.24
@@ -98,13 +98,13 @@
asterisk channels to acutal h.323 connections */
typedef struct call_details {
unsigned int call_reference;
- const char *call_token;
- const char *call_source_aliases;
- const char *call_dest_alias;
- const char *call_source_name;
- const char *call_source_e164;
- const char *call_dest_e164;
- const char *sourceIp;
+ char *call_token;
+ char *call_source_aliases;
+ char *call_dest_alias;
+ char *call_source_name;
+ char *call_source_e164;
+ char *call_dest_e164;
+ char *sourceIp;
} call_details_t;
typedef struct rtp_info {
More information about the svn-commits
mailing list