| 178 /* |
178 /* |
| 179 * Returns the directive parameter value that has the specified name |
179 * Returns the directive parameter value that has the specified name |
| 180 */ |
180 */ |
| 181 cxstring serverconfig_directive_get_arg(ConfigNode *directive, cxstring param_name); |
181 cxstring serverconfig_directive_get_arg(ConfigNode *directive, cxstring param_name); |
| 182 |
182 |
| |
183 /* |
| |
184 * Returns the number of directive arguments |
| |
185 */ |
| |
186 int serverconfig_directive_count_args(ConfigNode *dir); |
| |
187 |
| 183 |
188 |
| 184 /* |
189 /* |
| 185 * Checks if the directive name matches any string in the names array. |
190 * Checks if the directive name matches any string in the names array. |
| 186 * If it matches a name, the function returns 0 and stores the index of the |
191 * If it matches a name, the function returns 0 and stores the index of the |
| 187 * matched name in nameindex |
192 * matched name in nameindex |