| 1189 | } |
| 1190 | |
| 1191 | RefPtr<const Config> REMOTE_get_config(const PathName* dbName, |
| 1192 | const string* dpb_config) |
| 1193 | { |
| 1194 | RefPtr<const Config> config; |
| 1195 | |
| 1196 | if (dbName && dbName->hasData()) |
| 1197 | { |
| 1198 | PathName dummy; |
| 1199 | expandDatabaseName(*dbName, dummy, &config); |
| 1200 | } |
| 1201 | else |
| 1202 | config = Config::getDefaultConfig(); |
| 1203 | |
| 1204 | Config::merge(config, dpb_config); |
| 1205 | |
| 1206 | return config; |
| 1207 | } |
| 1208 | |
| 1209 | void REMOTE_check_response(IStatus* warning, Rdb* rdb, PACKET* packet, bool checkKeys) |
| 1210 | { |
no test coverage detected