Ignore:
Timestamp:
Nov 20, 2005 7:58:10 PM (18 years ago)
Author:
bennylp
Message:

More compliant URI parser, comparison, etc.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/include/pjsip/sip_parser.h

    r60 r64  
    295295 * parsers. 
    296296 */ 
    297 extern 
    298 pj_cis_t        pjsip_HOST_SPEC,            /* For scanning host part. */ 
    299                 pjsip_DIGIT_SPEC,           /* Decimal digits */ 
    300                 pjsip_ALPHA_SPEC,           /* Alpha (A-Z, a-z) */ 
    301                 pjsip_ALNUM_SPEC,           /* Decimal + Alpha. */ 
    302                 pjsip_TOKEN_SPEC,           /* Token. */ 
    303                 pjsip_HEX_SPEC,             /* Hexadecimal digits. */ 
    304                 pjsip_PARAM_CHAR_SPEC,      /* For scanning pname (or pvalue when it's not quoted.) */ 
    305                 pjsip_PROBE_USER_HOST_SPEC, /* Hostname characters. */ 
    306                 pjsip_PASSWD_SPEC,          /* Password. */ 
    307                 pjsip_USER_SPEC,            /* User */ 
    308                 pjsip_NEWLINE_OR_EOF_SPEC,  /* For eating up header.*/ 
    309                 pjsip_DISPLAY_SCAN_SPEC;    /* Used when searching for display name in URL. */ 
     297extern pj_cis_t     
     298    pjsip_HOST_SPEC,            /**< For scanning host part. */ 
     299    pjsip_DIGIT_SPEC,           /**< Decimal digits */ 
     300    pjsip_ALPHA_SPEC,           /**< Alpha (A-Z, a-z) */ 
     301    pjsip_ALNUM_SPEC,           /**< Decimal + Alpha. */ 
     302    pjsip_TOKEN_SPEC,           /**< Token. */ 
     303    pjsip_HEX_SPEC,             /**< Hexadecimal digits. */ 
     304    pjsip_PARAM_CHAR_SPEC,      /**< For scanning pname (or pvalue when it's  
     305                                     not quoted.) */ 
     306    pjsip_HDR_CHAR_SPEC,        /**< Chars in hname/havalue in URL. */ 
     307    pjsip_PROBE_USER_HOST_SPEC, /**< Hostname characters. */ 
     308    pjsip_PASSWD_SPEC,          /**< Password. */ 
     309    pjsip_USER_SPEC,            /**< User */ 
     310    pjsip_NEWLINE_OR_EOF_SPEC,  /**< For eating up header.*/ 
     311    pjsip_DISPLAY_SCAN_SPEC;    /**< Used when searching for display name. */ 
    310312 
    311313/* 
Note: See TracChangeset for help on using the changeset viewer.