MCPcopy Create free account
hub / github.com/Snapchat/KeyDB / addReplyBulkLongLong

Function addReplyBulkLongLong

src/networking.cpp:1023–1029  ·  view source on GitHub ↗

Add a long long as a bulk reply */

Source from the content-addressed store, hash-verified

1021
1022/* Add a long long as a bulk reply */
1023void addReplyBulkLongLong(client *c, long long ll) {
1024 char buf[64];
1025 int len;
1026
1027 len = ll2string(buf,64,ll);
1028 addReplyBulkCBuffer(c,buf,len);
1029}
1030
1031/* Reply with a verbatim type having the specified extension.
1032 *

Callers 15

scanFilterAndReplyFunction · 0.85
addHashFieldToReplyFunction · 0.85
roleCommandFunction · 0.85
replicationSendAckFunction · 0.85
xpendingCommandFunction · 0.85
timeCommandFunction · 0.85

Calls 2

ll2stringFunction · 0.85
addReplyBulkCBufferFunction · 0.85

Tested by

no test coverage detected