summaryrefslogtreecommitdiff
path: root/tools/xmpp_codec.hrl
diff options
context:
space:
mode:
authorEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-02-10 16:15:43 +0300
committerEvgeniy Khramtsov <ekhramtsov@process-one.net>2016-02-10 16:15:43 +0300
commitd6323a7b5e1e96c4738d521432ea5667b11b005e (patch)
tree8f2312f8291c1f01034e3ac8cdc3015b0d23a37a /tools/xmpp_codec.hrl
parentMention new XEP support (diff)
Add tests for XEP-0013
Diffstat (limited to 'tools/xmpp_codec.hrl')
-rw-r--r--tools/xmpp_codec.hrl9
1 files changed, 8 insertions, 1 deletions
diff --git a/tools/xmpp_codec.hrl b/tools/xmpp_codec.hrl
index 7996f6a1..1426287b 100644
--- a/tools/xmpp_codec.hrl
+++ b/tools/xmpp_codec.hrl
@@ -1,4 +1,4 @@
-%% Created automatically by XML generator (xml_gen.erl)
+%% Created automatically by XML generator (fxml_gen.erl)
%% Source: xmpp_codec.spec
-record(chatstate, {type :: active | composing | gone | inactive | paused}).
@@ -424,6 +424,13 @@
features = [] :: [binary()],
xdata = [] :: [#xdata{}]}).
+-record(offline_item, {node :: binary(),
+ action :: 'remove' | 'view'}).
+
+-record(offline, {items = [] :: [#offline_item{}],
+ purge = false :: boolean(),
+ fetch = false :: boolean()}).
+
-record(sasl_mechanisms, {list = [] :: [binary()]}).
-record(sm_failed, {reason :: atom() | #gone{} | #redirect{},