| 72 | } link_ctx; |
| 73 | |
| 74 | static int attr_char(char c) |
| 75 | { |
| 76 | switch (c) { |
| 77 | case '!': |
| 78 | case '#': |
| 79 | case '$': |
| 80 | case '&': |
| 81 | case '+': |
| 82 | case '-': |
| 83 | case '.': |
| 84 | case '^': |
| 85 | case '_': |
| 86 | case '`': |
| 87 | case '|': |
| 88 | case '~': |
| 89 | return 1; |
| 90 | default: |
| 91 | return apr_isalnum(c); |
| 92 | } |
| 93 | } |
| 94 | |
| 95 | static int ptoken_char(char c) |
| 96 | { |