MCPcopy Create free account
hub / github.com/F-Stack/f-stack / addReplyBulkLongLong

Function addReplyBulkLongLong

app/redis-6.2.6/src/networking.c:860–866  ·  view source on GitHub ↗

Add a long long as a bulk reply */

Source from the content-addressed store, hash-verified

858
859/* Add a long long as a bulk reply */
860void addReplyBulkLongLong(client *c, long long ll) {
861 char buf[64];
862 int len;
863
864 len = ll2string(buf,64,ll);
865 addReplyBulkCBuffer(c,buf,len);
866}
867
868/* Reply with a verbatim type having the specified extension.
869 *

Callers 15

sentinelConfigGetCommandFunction · 0.85
sentinelCommandFunction · 0.85
addHashFieldToReplyFunction · 0.85
roleCommandFunction · 0.85
replicationSendAckFunction · 0.85
timeCommandFunction · 0.85
scanGenericCommandFunction · 0.85

Calls 2

ll2stringFunction · 0.85
addReplyBulkCBufferFunction · 0.85

Tested by

no test coverage detected