standard api below...
| 1007 | |
| 1008 | // standard api below... |
| 1009 | static config_t * |
| 1010 | get_config(TSCont cont) |
| 1011 | { |
| 1012 | config_holder_t *configh = (config_holder_t *)TSContDataGet(cont); |
| 1013 | if (!configh) { |
| 1014 | return 0; |
| 1015 | } |
| 1016 | return configh->config; |
| 1017 | } |
| 1018 | |
| 1019 | static void |
| 1020 | load_config_file(config_holder_t *config_holder) |
no test coverage detected