about summary refs log tree commit diff
path: root/include/stomp.hrl
diff options
context:
space:
mode:
authorVincent Ambo <tazjin@gmail.com>2016-02-13T12·00+0100
committerVincent Ambo <tazjin@gmail.com>2016-02-13T12·00+0100
commit763bae8a61cc6981041a0fc145daa9872b5ea7fa (patch)
tree8a41bed350b1e9a9a1c2079c06d095b8ce75fbd3 /include/stomp.hrl
parent49c24a12d075b989a6ada5d11970ff29dd6ff226 (diff)
Add header parsing logic
Diffstat (limited to 'include/stomp.hrl')
-rw-r--r--include/stomp.hrl3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/stomp.hrl b/include/stomp.hrl
index 8ac197f78e01..30c933b56302 100644
--- a/include/stomp.hrl
+++ b/include/stomp.hrl
@@ -17,3 +17,6 @@
 -record(stomp_msg, { headers :: #{ binary() => binary() },
                      body    :: binary() }).
 -type stomp_msg() :: #stomp_msg{}.
+
+%% STOMP frame components
+-type headers() :: #{binary() => binary()}.