summaryrefslogtreecommitdiff
path: root/deps/rabbitmq_stream/include
diff options
context:
space:
mode:
authorArnaud Cogoluègnes <acogoluegnes@gmail.com>2020-05-06 09:15:16 +0200
committerArnaud Cogoluègnes <acogoluegnes@gmail.com>2020-05-06 09:15:16 +0200
commit2d19e859252c7e143c508aa147269e987c2c7f16 (patch)
treee6134adc78f2a41dbca0e416677e9628c37c6acb /deps/rabbitmq_stream/include
parentb61a79b9ffa20fadc8e2ef52403f0e1a6972c7c7 (diff)
downloadrabbitmq-server-git-2d19e859252c7e143c508aa147269e987c2c7f16.tar.gz
Use stream instead of target
Diffstat (limited to 'deps/rabbitmq_stream/include')
-rw-r--r--deps/rabbitmq_stream/include/rabbit_stream.hrl10
1 files changed, 5 insertions, 5 deletions
diff --git a/deps/rabbitmq_stream/include/rabbit_stream.hrl b/deps/rabbitmq_stream/include/rabbit_stream.hrl
index b6fcb0f6ab..7e46a6f87c 100644
--- a/deps/rabbitmq_stream/include/rabbit_stream.hrl
+++ b/deps/rabbitmq_stream/include/rabbit_stream.hrl
@@ -13,17 +13,17 @@
-define(COMMAND_OPEN, 12).
-define(COMMAND_CLOSE, 13).
-define(COMMAND_HEARTBEAT, 14).
--define(COMMAND_CREATE_TARGET, 998).
--define(COMMAND_DELETE_TARGET, 999).
+-define(COMMAND_CREATE_STREAM, 998).
+-define(COMMAND_DELETE_STREAM, 999).
-define(VERSION_0, 0).
-define(RESPONSE_CODE_OK, 0).
--define(RESPONSE_CODE_TARGET_DOES_NOT_EXIST, 1).
+-define(RESPONSE_CODE_STREAM_DOES_NOT_EXIST, 1).
-define(RESPONSE_CODE_SUBSCRIPTION_ID_ALREADY_EXISTS, 2).
-define(RESPONSE_CODE_SUBSCRIPTION_ID_DOES_NOT_EXIST, 3).
--define(RESPONSE_CODE_TARGET_ALREADY_EXISTS, 4).
--define(RESPONSE_CODE_TARGET_DELETED, 5).
+-define(RESPONSE_CODE_STREAM_ALREADY_EXISTS, 4).
+-define(RESPONSE_CODE_STREAM_DELETED, 5).
-define(RESPONSE_SASL_MECHANISM_NOT_SUPPORTED, 6).
-define(RESPONSE_AUTHENTICATION_FAILURE, 7).
-define(RESPONSE_SASL_ERROR, 8).