aboutsummaryrefslogtreecommitdiff
path: root/tools/xmpp_codec.hrl
diff options
context:
space:
mode:
Diffstat (limited to 'tools/xmpp_codec.hrl')
-rw-r--r--tools/xmpp_codec.hrl11
1 files changed, 10 insertions, 1 deletions
diff --git a/tools/xmpp_codec.hrl b/tools/xmpp_codec.hrl
index 1426287bf..b2773a6c1 100644
--- a/tools/xmpp_codec.hrl
+++ b/tools/xmpp_codec.hrl
@@ -36,6 +36,8 @@
jid :: any(),
subid :: binary()}).
+-record(mix_leave, {}).
+
-record(ping, {}).
-record(delay, {stamp :: any(),
@@ -98,7 +100,8 @@
-record(pubsub_event_item, {id :: binary(),
node :: binary(),
- publisher :: binary()}).
+ publisher :: binary(),
+ xml_els = [] :: [any()]}).
-record(sm_r, {xmlns :: binary()}).
@@ -229,6 +232,9 @@
notify = false :: any(),
items = [] :: [#pubsub_item{}]}).
+-record(mix_participant, {jid :: any(),
+ nick :: binary()}).
+
-record(vcard_geo, {lat :: binary(),
lon :: binary()}).
@@ -471,6 +477,9 @@
error :: #error{},
sub_els = [] :: [any()]}).
+-record(mix_join, {jid :: any(),
+ subscribe = [] :: [binary()]}).
+
-record(privacy_item, {order :: non_neg_integer(),
action :: 'allow' | 'deny',
type :: 'group' | 'jid' | 'subscription',