| 1007 | |
| 1008 | public: |
| 1009 | replicationBuffer() { |
| 1010 | reply = (clientReplyBlock*)zmalloc(sizeof(clientReplyBlock) + (PROTO_REPLY_CHUNK_BYTES*2)); |
| 1011 | reply->size = zmalloc_usable_size(reply) - sizeof(clientReplyBlock); |
| 1012 | reply->used = 0; |
| 1013 | } |
| 1014 | |
| 1015 | ~replicationBuffer() { |
| 1016 | zfree(reply); |
nothing calls this directly
no test coverage detected