| 922 | } |
| 923 | |
| 924 | void addReplyMapLen(client *c, long length) { |
| 925 | int prefix = c->resp == 2 ? '*' : '%'; |
| 926 | if (c->resp == 2) length *= 2; |
| 927 | addReplyAggregateLen(c,length,prefix); |
| 928 | } |
| 929 | |
| 930 | void addReplySetLen(client *c, long length) { |
| 931 | int prefix = c->resp == 2 ? '*' : '~'; |
no test coverage detected