| 1351 | } |
| 1352 | |
| 1353 | void setDeferredReplyStreamID(client *c, void *dr, streamID *id) { |
| 1354 | sds replyid = sdscatfmt(sdsempty(),"%U-%U",id->ms,id->seq); |
| 1355 | setDeferredReplyBulkSds(c, dr, replyid); |
| 1356 | } |
| 1357 | |
| 1358 | /* Similar to the above function, but just creates an object, usually useful |
| 1359 | * for replication purposes to create arguments. */ |
no test coverage detected