Add header parsing logic

This commit is contained in:
Vincent Ambo 2016-02-13 13:00:06 +01:00
parent 49c24a12d0
commit 763bae8a61
2 changed files with 27 additions and 2 deletions

View file

@ -17,3 +17,6 @@
-record(stomp_msg, { headers :: #{ binary() => binary() },
body :: binary() }).
-type stomp_msg() :: #stomp_msg{}.
%% STOMP frame components
-type headers() :: #{binary() => binary()}.