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

Function stuffSpb2

src/common/call_service.cpp:129–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

127}
128
129static void stuffSpb2(char*& spb, char param, const TEXT* value)
130{
131 stuffSpbByte(spb, param);
132 int l = static_cast<int>(strlen(value));
133 stuffSpbShort(spb, short(l));
134 memcpy(spb, value, l);
135 spb += l;
136}
137
138
139static void checkServerUsersVersion(isc_svc_handle svc_handle, char& server_users);

Callers 2

userInfoToSpbFunction · 0.85
callRemoteServiceManagerFunction · 0.85

Calls 3

stuffSpbByteFunction · 0.85
stuffSpbShortFunction · 0.85
shortFunction · 0.85

Tested by

no test coverage detected