summaryrefslogtreecommitdiff
path: root/src/stream.h
diff options
context:
space:
mode:
authorantirez <antirez@gmail.com>2018-03-23 17:21:31 +0100
committerantirez <antirez@gmail.com>2018-03-23 17:21:31 +0100
commit1392c83fb829d8586af8cdd1ef778b211be40e4a (patch)
tree8b51d67f5db38f42447e542cc31320c1d8c7b65e /src/stream.h
parent6c4cb1670a1f89ec3f38b67638cd76e161195358 (diff)
downloadredis-1392c83fb829d8586af8cdd1ef778b211be40e4a.tar.gz
CG: AOF rewriting implemented.
Diffstat (limited to 'src/stream.h')
-rw-r--r--src/stream.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/stream.h b/src/stream.h
index 7cc44ae76..8a019e93c 100644
--- a/src/stream.h
+++ b/src/stream.h
@@ -105,5 +105,6 @@ streamCG *streamLookupCG(stream *s, sds groupname);
streamConsumer *streamLookupConsumer(streamCG *cg, sds name, int create);
streamCG *streamCreateCG(stream *s, char *name, size_t namelen, streamID *id);
streamNACK *streamCreateNACK(streamConsumer *consumer);
+void streamDecodeID(void *buf, streamID *id);
#endif