[svn-commits] dvossel: branch dvossel/sip_string_parse_testing r244328 - in /team/dvossel/s...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Tue Feb 2 12:15:51 CST 2010


Author: dvossel
Date: Tue Feb  2 12:15:49 2010
New Revision: 244328

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=244328
Log:
rename new files to have '_' rather than '-'

Added:
    team/dvossel/sip_string_parse_testing/channels/sip/config_parser.c
      - copied, changed from r244327, team/dvossel/sip_string_parse_testing/channels/sip/config-parser.c
    team/dvossel/sip_string_parse_testing/channels/sip/include/config_parser.h
      - copied unchanged from r244323, team/dvossel/sip_string_parse_testing/channels/sip/include/config-parser.h
    team/dvossel/sip_string_parse_testing/channels/sip/include/reqresp_parser.h
      - copied unchanged from r244323, team/dvossel/sip_string_parse_testing/channels/sip/include/reqresp-parser.h
    team/dvossel/sip_string_parse_testing/channels/sip/include/sip_utils.h
      - copied unchanged from r244323, team/dvossel/sip_string_parse_testing/channels/sip/include/sip-utils.h
    team/dvossel/sip_string_parse_testing/channels/sip/reqresp_parser.c
      - copied, changed from r244327, team/dvossel/sip_string_parse_testing/channels/sip/reqresp-parser.c
Removed:
    team/dvossel/sip_string_parse_testing/channels/sip/config-parser.c
    team/dvossel/sip_string_parse_testing/channels/sip/include/config-parser.h
    team/dvossel/sip_string_parse_testing/channels/sip/include/reqresp-parser.h
    team/dvossel/sip_string_parse_testing/channels/sip/include/sip-utils.h
    team/dvossel/sip_string_parse_testing/channels/sip/reqresp-parser.c
Modified:
    team/dvossel/sip_string_parse_testing/channels/Makefile
    team/dvossel/sip_string_parse_testing/channels/chan_sip.c

Modified: team/dvossel/sip_string_parse_testing/channels/Makefile
URL: http://svnview.digium.com/svn/asterisk/team/dvossel/sip_string_parse_testing/channels/Makefile?view=diff&rev=244328&r1=244327&r2=244328
==============================================================================
--- team/dvossel/sip_string_parse_testing/channels/Makefile (original)
+++ team/dvossel/sip_string_parse_testing/channels/Makefile Tue Feb  2 12:15:49 2010
@@ -69,7 +69,7 @@
 	rm -f h323/Makefile
 
 $(if $(filter chan_iax2,$(EMBEDDED_MODS)),modules.link,chan_iax2.so): iax2-parser.o iax2-provision.o
-$(if $(filter chan_sip,$(EMBEDDED_MODS)),modules.link,chan_sip.so): sip/config-parser.o sip/reqresp-parser.o
+$(if $(filter chan_sip,$(EMBEDDED_MODS)),modules.link,chan_sip.so): sip/config_parser.o sip/reqresp_parser.o
 $(if $(filter chan_dahdi,$(EMBEDDED_MODS)),modules.link,chan_dahdi.so): sig_analog.o sig_pri.o
 
 ifneq ($(filter chan_h323,$(EMBEDDED_MODS)),)

Modified: team/dvossel/sip_string_parse_testing/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/team/dvossel/sip_string_parse_testing/channels/chan_sip.c?view=diff&rev=244328&r1=244327&r2=244328
==============================================================================
--- team/dvossel/sip_string_parse_testing/channels/chan_sip.c (original)
+++ team/dvossel/sip_string_parse_testing/channels/chan_sip.c Tue Feb  2 12:15:49 2010
@@ -263,9 +263,9 @@
 #include "asterisk/stun.h"
 #include "asterisk/cel.h"
 #include "sip/include/sip.h"
-#include "sip/include/config-parser.h"
-#include "sip/include/reqresp-parser.h"
-#include "sip/include/sip-utils.h"
+#include "sip/include/config_parser.h"
+#include "sip/include/reqresp_parser.h"
+#include "sip/include/sip_utils.h"
 
 /*** DOCUMENTATION
 	<application name="SIPDtmfMode" language="en_US">

Copied: team/dvossel/sip_string_parse_testing/channels/sip/config_parser.c (from r244327, team/dvossel/sip_string_parse_testing/channels/sip/config-parser.c)
URL: http://svnview.digium.com/svn/asterisk/team/dvossel/sip_string_parse_testing/channels/sip/config_parser.c?view=diff&rev=244328&p1=team/dvossel/sip_string_parse_testing/channels/sip/config-parser.c&r1=244327&p2=team/dvossel/sip_string_parse_testing/channels/sip/config_parser.c&r2=244328
==============================================================================
--- team/dvossel/sip_string_parse_testing/channels/sip/config-parser.c (original)
+++ team/dvossel/sip_string_parse_testing/channels/sip/config_parser.c Tue Feb  2 12:15:49 2010
@@ -24,8 +24,8 @@
 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 
 #include "include/sip.h"
-#include "include/config-parser.h"
-#include "include/sip-utils.h"
+#include "include/config_parser.h"
+#include "include/sip_utils.h"
 
 /*! \brief Parse register=> line in sip.conf
  *

Copied: team/dvossel/sip_string_parse_testing/channels/sip/reqresp_parser.c (from r244327, team/dvossel/sip_string_parse_testing/channels/sip/reqresp-parser.c)
URL: http://svnview.digium.com/svn/asterisk/team/dvossel/sip_string_parse_testing/channels/sip/reqresp_parser.c?view=diff&rev=244328&p1=team/dvossel/sip_string_parse_testing/channels/sip/reqresp-parser.c&r1=244327&p2=team/dvossel/sip_string_parse_testing/channels/sip/reqresp_parser.c&r2=244328
==============================================================================
--- team/dvossel/sip_string_parse_testing/channels/sip/reqresp-parser.c (original)
+++ team/dvossel/sip_string_parse_testing/channels/sip/reqresp_parser.c Tue Feb  2 12:15:49 2010
@@ -24,7 +24,7 @@
 ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
 
 #include "include/sip.h"
-#include "include/reqresp-parser.h"
+#include "include/reqresp_parser.h"
 
 /*! \brief * parses a URI in its components.*/
 int parse_uri(char *uri, const char *scheme, char **ret_name, char **pass, char **domain, char **port, char **transport)




More information about the svn-commits mailing list