| 933 | } |
| 934 | |
| 935 | void addReplyAttributeLen(client *c, long length) { |
| 936 | serverAssert(c->resp >= 3); |
| 937 | addReplyAggregateLen(c,length,'|'); |
| 938 | } |
| 939 | |
| 940 | void addReplyPushLen(client *c, long length) { |
| 941 | serverAssert(c->resp >= 3); |
no test coverage detected