------------------------------------------------------------------------- RecConfigReadConfigDir -------------------------------------------------------------------------
| 998 | // RecConfigReadConfigDir |
| 999 | //------------------------------------------------------------------------- |
| 1000 | std::string |
| 1001 | RecConfigReadConfigDir() |
| 1002 | { |
| 1003 | if (const char *env = getenv("PROXY_CONFIG_CONFIG_DIR")) { |
| 1004 | return Layout::get()->relative(env); |
| 1005 | } else { |
| 1006 | return Layout::get()->sysconfdir; |
| 1007 | } |
| 1008 | } |
| 1009 | |
| 1010 | //------------------------------------------------------------------------- |
| 1011 | // RecConfigReadRuntimeDir |
no test coverage detected