| 115 | } |
| 116 | |
| 117 | RecErrT |
| 118 | RecRegisterConfigString(RecT rec_type, const char *name, const char *data_default_tmp, RecUpdateT update_type, RecCheckT check_type, |
| 119 | const char *check_regex, RecSourceT source, RecAccessT access_type) |
| 120 | { |
| 121 | RecString data_default = const_cast<RecString>(data_default_tmp); |
| 122 | ink_assert((rec_type == RECT_CONFIG) || (rec_type == RECT_LOCAL)); |
| 123 | REC_REGISTER_CONFIG_XXX(rec_string, RECD_STRING); |
| 124 | } |
| 125 | |
| 126 | RecErrT |
| 127 | RecRegisterConfigCounter(RecT rec_type, const char *name, RecCounter data_default, RecUpdateT update_type, RecCheckT check_type, |
no outgoing calls