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

Method versionInfo

src/remote/remote.cpp:1496–1510  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1494}
1495
1496void rem_port::versionInfo(string& version) const
1497{
1498 version.printf("%s/%s", FB_VERSION, port_version->str_data);
1499#ifndef WIRE_COMPRESS_SUPPORT
1500 if (port_crypt_plugin)
1501 version += ":C";
1502#else
1503 if (port_crypt_plugin || port_compressed)
1504 version += ':';
1505 if (port_crypt_plugin)
1506 version += 'C';
1507 if (port_compressed)
1508 version += 'Z';
1509#endif
1510}
1511
1512
1513#ifdef WIRE_COMPRESS_SUPPORT

Callers 1

getInfoMethod · 0.80

Calls 1

printfMethod · 0.45

Tested by

no test coverage detected