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

Method findSpecificData

src/remote/server/server.cpp:6657–6671  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6655
6656
6657const UCharBuffer* rem_port::findSpecificData(const PathName& type, const PathName& plugin)
6658{
6659 for (unsigned i = 0; i < port_known_server_keys.getCount(); ++i)
6660 {
6661 //KnownServerKey
6662 auto& k = port_known_server_keys[i];
6663 if (k.type != type)
6664 continue;
6665 auto* rc = k.findSpecificData(plugin);
6666 if (rc)
6667 return rc;
6668 }
6669
6670 return nullptr;
6671}
6672
6673
6674void rem_port::addSpecificData(const PathName& type, const PathName& plugin, unsigned length, const void* data)

Callers 2

start_cryptMethod · 0.95
tryKeyTypeMethod · 0.45

Calls 1

getCountMethod · 0.45

Tested by

no test coverage detected