mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-22 17:28:25 +01:00
Re-generate the XMPP codec using updated xml_gen
This commit is contained in:
parent
3d3a4f7543
commit
a087af7060
@ -5,6 +5,9 @@
|
|||||||
|
|
||||||
-record(sasl_success, {text :: any()}).
|
-record(sasl_success, {text :: any()}).
|
||||||
|
|
||||||
|
-record(text, {lang :: binary(),
|
||||||
|
data :: binary()}).
|
||||||
|
|
||||||
-record(streamhost, {jid :: any(),
|
-record(streamhost, {jid :: any(),
|
||||||
host :: binary(),
|
host :: binary(),
|
||||||
port = 1080 :: non_neg_integer()}).
|
port = 1080 :: non_neg_integer()}).
|
||||||
@ -83,6 +86,9 @@
|
|||||||
|
|
||||||
-record(sm_r, {}).
|
-record(sm_r, {}).
|
||||||
|
|
||||||
|
-record(muc_actor, {jid :: any(),
|
||||||
|
nick :: binary()}).
|
||||||
|
|
||||||
-record(stat, {name :: binary(),
|
-record(stat, {name :: binary(),
|
||||||
units :: binary(),
|
units :: binary(),
|
||||||
value :: binary(),
|
value :: binary(),
|
||||||
@ -150,8 +156,15 @@
|
|||||||
subid :: binary(),
|
subid :: binary(),
|
||||||
type :: 'none' | 'pending' | 'subscribed' | 'unconfigured'}).
|
type :: 'none' | 'pending' | 'subscribed' | 'unconfigured'}).
|
||||||
|
|
||||||
-record(muc_actor, {jid :: any(),
|
-record(muc_item, {actor :: #muc_actor{},
|
||||||
nick :: binary()}).
|
continue :: binary(),
|
||||||
|
reason :: binary(),
|
||||||
|
affiliation :: 'admin' | 'member' | 'none' | 'outcast' | 'owner',
|
||||||
|
role :: 'moderator' | 'none' | 'participant' | 'visitor',
|
||||||
|
jid :: any(),
|
||||||
|
nick :: binary()}).
|
||||||
|
|
||||||
|
-record(muc_admin, {items = [] :: [#muc_item{}]}).
|
||||||
|
|
||||||
-record(shim, {headers = [] :: [{binary(),'undefined' | binary()}]}).
|
-record(shim, {headers = [] :: [{binary(),'undefined' | binary()}]}).
|
||||||
|
|
||||||
@ -192,9 +205,6 @@
|
|||||||
notify = false :: any(),
|
notify = false :: any(),
|
||||||
items = [] :: [#pubsub_item{}]}).
|
items = [] :: [#pubsub_item{}]}).
|
||||||
|
|
||||||
-record(text, {lang :: binary(),
|
|
||||||
data :: binary()}).
|
|
||||||
|
|
||||||
-record(vcard_geo, {lat :: binary(),
|
-record(vcard_geo, {lat :: binary(),
|
||||||
lon :: binary()}).
|
lon :: binary()}).
|
||||||
|
|
||||||
@ -224,14 +234,6 @@
|
|||||||
-record(bind, {jid :: any(),
|
-record(bind, {jid :: any(),
|
||||||
resource :: any()}).
|
resource :: any()}).
|
||||||
|
|
||||||
-record(muc_item, {actor :: #muc_actor{},
|
|
||||||
continue :: binary(),
|
|
||||||
reason :: binary(),
|
|
||||||
affiliation :: 'admin' | 'member' | 'none' | 'outcast' | 'owner',
|
|
||||||
role :: 'moderator' | 'none' | 'participant' | 'visitor',
|
|
||||||
jid :: any(),
|
|
||||||
nick :: binary()}).
|
|
||||||
|
|
||||||
-record(muc_user, {decline :: #muc_decline{},
|
-record(muc_user, {decline :: #muc_decline{},
|
||||||
destroy :: #muc_user_destroy{},
|
destroy :: #muc_user_destroy{},
|
||||||
invites = [] :: [#muc_invite{}],
|
invites = [] :: [#muc_invite{}],
|
||||||
@ -239,8 +241,6 @@
|
|||||||
status_codes = [] :: [pos_integer()],
|
status_codes = [] :: [pos_integer()],
|
||||||
password :: binary()}).
|
password :: binary()}).
|
||||||
|
|
||||||
-record(muc_admin, {items = [] :: [#muc_item{}]}).
|
|
||||||
|
|
||||||
-record(carbons_disable, {}).
|
-record(carbons_disable, {}).
|
||||||
|
|
||||||
-record(bytestreams, {hosts = [] :: [#streamhost{}],
|
-record(bytestreams, {hosts = [] :: [#streamhost{}],
|
||||||
|
Loading…
Reference in New Issue
Block a user