| 161 | } |
| 162 | |
| 163 | static bool |
| 164 | http_config_enum_mask_read(const char *name, MgmtByte &value) |
| 165 | { |
| 166 | char key[512]; // it's just one key - painful UI if keys are longer than this |
| 167 | if (REC_ERR_OKAY == RecGetRecordString(name, key, sizeof(key))) { |
| 168 | return HttpConfig::load_server_session_sharing_match(key, value); |
| 169 | } |
| 170 | return false; |
| 171 | } |
| 172 | |
| 173 | static const ConfigEnumPair<TSServerSessionSharingPoolType> SessionSharingPoolStrings[] = { |
| 174 | {TS_SERVER_SESSION_SHARING_POOL_GLOBAL, "global" }, |
no test coverage detected