| 769 | } |
| 770 | |
| 771 | void addReplySetLen(client *c, long length) { |
| 772 | int prefix = c->resp == 2 ? '*' : '~'; |
| 773 | addReplyAggregateLen(c,length,prefix); |
| 774 | } |
| 775 | |
| 776 | void addReplyAttributeLen(client *c, long length) { |
| 777 | serverAssert(c->resp >= 3); |
no test coverage detected