Navigation


Changeset 128:0b58b533d4f6 in freeDiameter for extensions/test_app


Ignore:
Timestamp:
Dec 10, 2009, 2:56:19 PM (14 years ago)
Author:
Sebastien Decugis <sdecugis@nict.go.jp>
Branch:
default
Phase:
public
Message:

Allow souple configuration

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/test_app/ta_conf.l

    r127 r128  
    8888                        }
    8989
    90         /* Recognize quoted strings */
    91 \"[[:alnum:].-]+\"      {
    92                                 /* Match a string. expected only ASCII characters, '-' and '.'. The validation is done in yacc */
     90        /* Recognize quoted strings -- we do not support escaped \" in the string currently. */
     91\"[^\"]+\"              {
     92                                /* Match a quoted string. Let's be very permissive. */
    9393                                yylval->string = strdup(yytext+1);
    9494                                if (!yylval->string) {
Note: See TracChangeset for help on using the changeset viewer.