| 774 | } |
| 775 | |
| 776 | void addReplyAttributeLen(client *c, long length) { |
| 777 | serverAssert(c->resp >= 3); |
| 778 | addReplyAggregateLen(c,length,'|'); |
| 779 | } |
| 780 | |
| 781 | void addReplyPushLen(client *c, long length) { |
| 782 | serverAssert(c->resp >= 3); |
no test coverage detected