MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / REMOTE_get_config

Function REMOTE_get_config

src/remote/remote.cpp:1191–1207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1189}
1190
1191RefPtr<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
1209void REMOTE_check_response(IStatus* warning, Rdb* rdb, PACKET* packet, bool checkKeys)
1210{

Callers 2

ClntAuthBlockMethod · 0.85
accept_connectionFunction · 0.85

Calls 3

expandDatabaseNameFunction · 0.85
mergeFunction · 0.50
hasDataMethod · 0.45

Tested by

no test coverage detected