| 928 | } |
| 929 | |
| 930 | void addReplySetLen(client *c, long length) { |
| 931 | int prefix = c->resp == 2 ? '*' : '~'; |
| 932 | addReplyAggregateLen(c,length,prefix); |
| 933 | } |
| 934 | |
| 935 | void addReplyAttributeLen(client *c, long length) { |
| 936 | serverAssert(c->resp >= 3); |
no test coverage detected