Update of /usr/cvsroot/asterisk/channels
In directory mongoose.digium.com:/tmp/cvs-serv25185/channels

Modified Files:
        chan_sip.c 
Log Message:
add a few const's


Index: chan_sip.c
===================================================================
RCS file: /usr/cvsroot/asterisk/channels/chan_sip.c,v
retrieving revision 1.793
retrieving revision 1.794
diff -u -d -r1.793 -r1.794
--- chan_sip.c  26 Jul 2005 22:13:31 -0000      1.793
+++ chan_sip.c  27 Jul 2005 00:32:37 -0000      1.794
@@ -141,17 +141,18 @@
 
 #define RTP    1
 #define NO_RTP 0
-const struct  cfsip_methods { 
+
+static const struct  cfsip_methods { 
        int id;
        int need_rtp;           /* when this is the 'primary' use for a pvt 
structure, does it need RTP? */
-       char *text;
+       char * const text;
 } sip_methods[] = {
-       { 0,             RTP, "-UNKNOWN-" },
+       { 0,             RTP,    "-UNKNOWN-" },
        { SIP_RESPONSE,  NO_RTP, "SIP/2.0" },
        { SIP_REGISTER,  NO_RTP, "REGISTER" },
        { SIP_OPTIONS,   NO_RTP, "OPTIONS" },
        { SIP_NOTIFY,    NO_RTP, "NOTIFY" },
-       { SIP_INVITE,    RTP, "INVITE" },
+       { SIP_INVITE,    RTP,    "INVITE" },
        { SIP_ACK,       NO_RTP, "ACK" },
        { SIP_PRACK,     NO_RTP, "PRACK" },
        { SIP_BYE,       NO_RTP, "BYE" },
@@ -215,10 +216,10 @@
 
 /* List of well-known SIP options. If we get this in a require,
    we should check the list and answer accordingly. */
-const struct cfsip_options {
+static const struct cfsip_options {
        int id;                 /* Bitmap ID */
        int supported;          /* Supported by Asterisk ? */
-       char *text;             /* Text id, as in standard */
+       char * const text;      /* Text id, as in standard */
 } sip_options[] = {
        /* Replaces: header for transfer */
        { SIP_OPT_REPLACES,     SUPPORTED,      "replaces" },   

_______________________________________________
Asterisk-Cvs mailing list
[email protected]
http://lists.digium.com/mailman/listinfo/asterisk-cvs

Reply via email to