| 763 | } |
| 764 | |
| 765 | void addReplyMapLen(client *c, long length) { |
| 766 | int prefix = c->resp == 2 ? '*' : '%'; |
| 767 | if (c->resp == 2) length *= 2; |
| 768 | addReplyAggregateLen(c,length,prefix); |
| 769 | } |
| 770 | |
| 771 | void addReplySetLen(client *c, long length) { |
| 772 | int prefix = c->resp == 2 ? '*' : '~'; |
no test coverage detected