2013-06-14 10:47:50 +02:00
|
|
|
%% Created automatically by XML generator (xml_gen.erl)
|
|
|
|
%% Source: xmpp_codec.spec
|
|
|
|
|
2014-09-13 20:54:07 +02:00
|
|
|
-record(chatstate, {type :: active | composing | gone | inactive | paused}).
|
|
|
|
|
|
|
|
-record(csi, {type :: active | inactive}).
|
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
-record(feature_register, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(sasl_success, {text :: any()}).
|
2013-06-13 18:34:45 +02:00
|
|
|
|
2015-06-22 15:56:08 +02:00
|
|
|
-record(mam_result, {xmlns :: binary(),
|
|
|
|
queryid :: binary(),
|
|
|
|
id :: binary(),
|
|
|
|
sub_els = [] :: [any()]}).
|
|
|
|
|
|
|
|
-record(rsm_first, {index :: non_neg_integer(),
|
|
|
|
data :: binary()}).
|
|
|
|
|
2014-07-24 08:32:07 +02:00
|
|
|
-record(text, {lang :: binary(),
|
|
|
|
data :: binary()}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(streamhost, {jid :: any(),
|
|
|
|
host :: binary(),
|
|
|
|
port = 1080 :: non_neg_integer()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2014-07-22 11:59:31 +02:00
|
|
|
-record(sm_resume, {h :: non_neg_integer(),
|
2014-08-26 20:21:27 +02:00
|
|
|
previd :: binary(),
|
|
|
|
xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2014-07-20 20:43:16 +02:00
|
|
|
-record(carbons_enable, {}).
|
|
|
|
|
|
|
|
-record(carbons_private, {}).
|
|
|
|
|
2013-06-25 19:00:27 +02:00
|
|
|
-record(pubsub_unsubscribe, {node :: binary(),
|
|
|
|
jid :: any(),
|
|
|
|
subid :: binary()}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(ping, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(delay, {stamp :: any(),
|
|
|
|
from :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(muc_history, {maxchars :: non_neg_integer(),
|
|
|
|
maxstanzas :: non_neg_integer(),
|
|
|
|
seconds :: non_neg_integer(),
|
|
|
|
since :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(pubsub_affiliation, {node :: binary(),
|
|
|
|
type :: 'member' | 'none' | 'outcast' | 'owner' | 'publish-only' | 'publisher'}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(muc_decline, {reason :: binary(),
|
|
|
|
from :: any(),
|
|
|
|
to :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2014-08-26 20:21:27 +02:00
|
|
|
-record(sm_a, {h :: non_neg_integer(),
|
|
|
|
xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(starttls_proceed, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2014-07-22 11:59:31 +02:00
|
|
|
-record(sm_resumed, {h :: non_neg_integer(),
|
2014-08-26 20:21:27 +02:00
|
|
|
previd :: binary(),
|
|
|
|
xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2014-07-20 20:43:16 +02:00
|
|
|
-record(forwarded, {delay :: #delay{},
|
|
|
|
sub_els = [] :: [any()]}).
|
|
|
|
|
2014-07-22 11:59:31 +02:00
|
|
|
-record(sm_enable, {max :: non_neg_integer(),
|
2014-08-26 20:21:27 +02:00
|
|
|
resume = false :: any(),
|
|
|
|
xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(starttls_failure, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(sasl_challenge, {text :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(gone, {uri :: binary()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-07-03 15:33:19 +02:00
|
|
|
-record(private, {xml_els = [] :: [any()]}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
-record(p1_ack, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2014-08-26 20:21:27 +02:00
|
|
|
-record(feature_sm, {xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(pubsub_item, {id :: binary(),
|
2013-07-03 15:33:19 +02:00
|
|
|
xml_els = [] :: [any()]}).
|
2013-06-14 16:45:04 +02:00
|
|
|
|
2013-06-25 19:00:27 +02:00
|
|
|
-record(pubsub_publish, {node :: binary(),
|
|
|
|
items = [] :: [#pubsub_item{}]}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(roster_item, {jid :: any(),
|
|
|
|
name :: binary(),
|
|
|
|
groups = [] :: [binary()],
|
|
|
|
subscription = none :: 'both' | 'from' | 'none' | 'remove' | 'to',
|
|
|
|
ask :: 'subscribe'}).
|
2013-06-14 16:45:04 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(roster, {items = [] :: [#roster_item{}],
|
|
|
|
ver :: binary()}).
|
2013-06-14 16:45:04 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(pubsub_event_item, {id :: binary(),
|
|
|
|
node :: binary(),
|
|
|
|
publisher :: binary()}).
|
2013-06-14 16:45:04 +02:00
|
|
|
|
2014-08-26 20:21:27 +02:00
|
|
|
-record(sm_r, {xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2014-07-24 08:32:07 +02:00
|
|
|
-record(muc_actor, {jid :: any(),
|
|
|
|
nick :: binary()}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(stat, {name :: binary(),
|
|
|
|
units :: binary(),
|
|
|
|
value :: binary(),
|
2013-06-25 19:00:27 +02:00
|
|
|
error = [] :: [{integer(),'undefined' | binary()}]}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record('see-other-host', {host :: binary()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(compress, {methods = [] :: [binary()]}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(starttls, {required = false :: boolean()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(last, {seconds :: non_neg_integer(),
|
|
|
|
text :: binary()}).
|
2013-06-16 20:00:19 +02:00
|
|
|
|
2014-07-22 11:59:31 +02:00
|
|
|
-record(redirect, {uri :: binary()}).
|
|
|
|
|
|
|
|
-record(sm_enabled, {id :: binary(),
|
|
|
|
location :: binary(),
|
|
|
|
max :: non_neg_integer(),
|
2014-08-26 20:21:27 +02:00
|
|
|
resume = false :: any(),
|
|
|
|
xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(pubsub_event_items, {node :: binary(),
|
|
|
|
retract = [] :: [binary()],
|
|
|
|
items = [] :: [#pubsub_event_item{}]}).
|
2013-06-16 20:00:19 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(pubsub_event, {items = [] :: [#pubsub_event_items{}]}).
|
2013-06-16 20:00:19 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(sasl_response, {text :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-25 19:00:27 +02:00
|
|
|
-record(pubsub_subscribe, {node :: binary(),
|
|
|
|
jid :: any()}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(sasl_auth, {mechanism :: binary(),
|
|
|
|
text :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(p1_push, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2014-09-11 18:18:20 +02:00
|
|
|
-record(feature_csi, {xmlns :: binary()}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(muc_user_destroy, {reason :: binary(),
|
|
|
|
jid :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(disco_item, {jid :: any(),
|
|
|
|
name :: binary(),
|
|
|
|
node :: binary()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(disco_items, {node :: binary(),
|
|
|
|
items = [] :: [#disco_item{}]}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(unblock, {items = [] :: [any()]}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(block, {items = [] :: [any()]}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-16 20:00:19 +02:00
|
|
|
-record(session, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(compression, {methods = [] :: [binary()]}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(muc_owner_destroy, {jid :: any(),
|
|
|
|
reason :: binary(),
|
|
|
|
password :: binary()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(pubsub_subscription, {jid :: any(),
|
|
|
|
node :: binary(),
|
|
|
|
subid :: binary(),
|
|
|
|
type :: 'none' | 'pending' | 'subscribed' | 'unconfigured'}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2014-07-24 08:32:07 +02:00
|
|
|
-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_admin, {items = [] :: [#muc_item{}]}).
|
2014-07-19 15:23:13 +02:00
|
|
|
|
2013-06-25 19:00:27 +02:00
|
|
|
-record(shim, {headers = [] :: [{binary(),'undefined' | binary()}]}).
|
|
|
|
|
2015-06-22 15:56:08 +02:00
|
|
|
-record(mam_prefs, {xmlns :: binary(),
|
|
|
|
default :: 'always' | 'never' | 'roster',
|
|
|
|
always = [] :: [any()],
|
|
|
|
never = [] :: [any()]}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(caps, {hash :: binary(),
|
|
|
|
node :: binary(),
|
|
|
|
ver :: any()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(muc, {history :: #muc_history{},
|
|
|
|
password :: binary()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(stream_features, {sub_els = [] :: [any()]}).
|
2013-06-16 20:00:19 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(stats, {stat = [] :: [#stat{}]}).
|
2013-06-16 20:00:19 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(pubsub_items, {node :: binary(),
|
|
|
|
max_items :: non_neg_integer(),
|
|
|
|
subid :: binary(),
|
|
|
|
items = [] :: [#pubsub_item{}]}).
|
2013-06-16 20:00:19 +02:00
|
|
|
|
2014-07-20 20:43:16 +02:00
|
|
|
-record(carbons_sent, {forwarded :: #forwarded{}}).
|
|
|
|
|
2015-06-22 15:56:08 +02:00
|
|
|
-record(mam_archived, {by :: any(),
|
|
|
|
id :: binary()}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(p1_rebind, {}).
|
2013-06-13 18:34:45 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(compress_failure, {reason :: 'processing-failed' | 'setup-failed' | 'unsupported-method'}).
|
2013-06-13 18:34:45 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(sasl_abort, {}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(vcard_email, {home = false :: boolean(),
|
|
|
|
work = false :: boolean(),
|
|
|
|
internet = false :: boolean(),
|
|
|
|
pref = false :: boolean(),
|
|
|
|
x400 = false :: boolean(),
|
|
|
|
userid :: binary()}).
|
2013-04-08 11:12:54 +02:00
|
|
|
|
2014-07-20 20:43:16 +02:00
|
|
|
-record(carbons_received, {forwarded :: #forwarded{}}).
|
|
|
|
|
2013-06-25 19:00:27 +02:00
|
|
|
-record(pubsub_retract, {node :: binary(),
|
|
|
|
notify = false :: any(),
|
|
|
|
items = [] :: [#pubsub_item{}]}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(vcard_geo, {lat :: binary(),
|
|
|
|
lon :: binary()}).
|
2013-06-14 10:47:50 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(compressed, {}).
|
2013-06-15 18:45:18 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(sasl_failure, {reason :: 'aborted' | 'account-disabled' | 'credentials-expired' | 'encryption-required' | 'incorrect-encoding' | 'invalid-authzid' | 'invalid-mechanism' | 'malformed-request' | 'mechanism-too-weak' | 'not-authorized' | 'temporary-auth-failure',
|
|
|
|
text = [] :: [#text{}]}).
|
2013-06-15 18:45:18 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(block_list, {}).
|
2013-06-16 20:00:19 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(xdata_field, {label :: binary(),
|
|
|
|
type :: 'boolean' | 'fixed' | 'hidden' | 'jid-multi' | 'jid-single' | 'list-multi' | 'list-single' | 'text-multi' | 'text-private' | 'text-single',
|
|
|
|
var :: binary(),
|
|
|
|
required = false :: boolean(),
|
|
|
|
desc :: binary(),
|
|
|
|
values = [] :: [binary()],
|
|
|
|
options = [] :: [binary()]}).
|
|
|
|
|
2013-06-25 19:00:27 +02:00
|
|
|
-record(version, {name :: binary(),
|
|
|
|
ver :: binary(),
|
|
|
|
os :: binary()}).
|
2013-06-17 20:04:32 +02:00
|
|
|
|
|
|
|
-record(muc_invite, {reason :: binary(),
|
|
|
|
from :: any(),
|
|
|
|
to :: any()}).
|
|
|
|
|
|
|
|
-record(bind, {jid :: any(),
|
|
|
|
resource :: any()}).
|
|
|
|
|
|
|
|
-record(muc_user, {decline :: #muc_decline{},
|
|
|
|
destroy :: #muc_user_destroy{},
|
|
|
|
invites = [] :: [#muc_invite{}],
|
|
|
|
items = [] :: [#muc_item{}],
|
|
|
|
status_codes = [] :: [pos_integer()],
|
|
|
|
password :: binary()}).
|
|
|
|
|
2014-10-30 21:54:02 +01:00
|
|
|
-record(vcard_xupdate, {photo :: binary()}).
|
|
|
|
|
2014-07-20 20:43:16 +02:00
|
|
|
-record(carbons_disable, {}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(bytestreams, {hosts = [] :: [#streamhost{}],
|
|
|
|
used :: any(),
|
|
|
|
activate :: any(),
|
|
|
|
dstaddr :: binary(),
|
|
|
|
mode = tcp :: 'tcp' | 'udp',
|
|
|
|
sid :: binary()}).
|
|
|
|
|
|
|
|
-record(vcard_org, {name :: binary(),
|
|
|
|
units = [] :: [binary()]}).
|
|
|
|
|
2015-06-22 15:56:08 +02:00
|
|
|
-record(rsm_set, {'after' :: binary(),
|
2015-07-09 12:01:37 +02:00
|
|
|
before :: 'none' | binary(),
|
2015-06-22 15:56:08 +02:00
|
|
|
count :: non_neg_integer(),
|
|
|
|
first :: #rsm_first{},
|
|
|
|
index :: non_neg_integer(),
|
|
|
|
last :: binary(),
|
|
|
|
max :: non_neg_integer()}).
|
|
|
|
|
|
|
|
-record(mam_fin, {id :: binary(),
|
2015-07-10 12:02:42 +02:00
|
|
|
rsm :: #rsm_set{},
|
|
|
|
stable :: any(),
|
|
|
|
complete :: any()}).
|
2015-06-22 15:56:08 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(vcard_tel, {home = false :: boolean(),
|
|
|
|
work = false :: boolean(),
|
|
|
|
voice = false :: boolean(),
|
|
|
|
fax = false :: boolean(),
|
|
|
|
pager = false :: boolean(),
|
|
|
|
msg = false :: boolean(),
|
|
|
|
cell = false :: boolean(),
|
|
|
|
video = false :: boolean(),
|
|
|
|
bbs = false :: boolean(),
|
|
|
|
modem = false :: boolean(),
|
|
|
|
isdn = false :: boolean(),
|
|
|
|
pcs = false :: boolean(),
|
|
|
|
pref = false :: boolean(),
|
|
|
|
number :: binary()}).
|
|
|
|
|
|
|
|
-record(vcard_key, {type :: binary(),
|
|
|
|
cred :: binary()}).
|
|
|
|
|
|
|
|
-record(vcard_name, {family :: binary(),
|
|
|
|
given :: binary(),
|
|
|
|
middle :: binary(),
|
|
|
|
prefix :: binary(),
|
|
|
|
suffix :: binary()}).
|
|
|
|
|
|
|
|
-record(identity, {category :: binary(),
|
|
|
|
type :: binary(),
|
2013-06-25 19:00:27 +02:00
|
|
|
lang :: binary(),
|
2013-06-17 20:04:32 +02:00
|
|
|
name :: binary()}).
|
|
|
|
|
|
|
|
-record(bookmark_conference, {name :: binary(),
|
|
|
|
jid :: any(),
|
|
|
|
autojoin = false :: any(),
|
|
|
|
nick :: binary(),
|
|
|
|
password :: binary()}).
|
|
|
|
|
|
|
|
-record(bookmark_url, {name :: binary(),
|
|
|
|
url :: binary()}).
|
|
|
|
|
|
|
|
-record(bookmark_storage, {conference = [] :: [#bookmark_conference{}],
|
|
|
|
url = [] :: [#bookmark_url{}]}).
|
|
|
|
|
|
|
|
-record(vcard_sound, {phonetic :: binary(),
|
|
|
|
binval :: any(),
|
|
|
|
extval :: binary()}).
|
|
|
|
|
|
|
|
-record(vcard_photo, {type :: binary(),
|
|
|
|
binval :: any(),
|
|
|
|
extval :: binary()}).
|
|
|
|
|
|
|
|
-record(vcard_label, {home = false :: boolean(),
|
|
|
|
work = false :: boolean(),
|
|
|
|
postal = false :: boolean(),
|
|
|
|
parcel = false :: boolean(),
|
|
|
|
dom = false :: boolean(),
|
|
|
|
intl = false :: boolean(),
|
|
|
|
pref = false :: boolean(),
|
|
|
|
line = [] :: [binary()]}).
|
|
|
|
|
|
|
|
-record(vcard_adr, {home = false :: boolean(),
|
|
|
|
work = false :: boolean(),
|
|
|
|
postal = false :: boolean(),
|
|
|
|
parcel = false :: boolean(),
|
|
|
|
dom = false :: boolean(),
|
|
|
|
intl = false :: boolean(),
|
|
|
|
pref = false :: boolean(),
|
|
|
|
pobox :: binary(),
|
|
|
|
extadd :: binary(),
|
|
|
|
street :: binary(),
|
|
|
|
locality :: binary(),
|
|
|
|
region :: binary(),
|
|
|
|
pcode :: binary(),
|
|
|
|
ctry :: binary()}).
|
|
|
|
|
|
|
|
-record(xdata, {type :: 'cancel' | 'form' | 'result' | 'submit',
|
|
|
|
instructions = [] :: [binary()],
|
|
|
|
title :: binary(),
|
|
|
|
reported :: [#xdata_field{}],
|
|
|
|
items = [] :: [[#xdata_field{}]],
|
|
|
|
fields = [] :: [#xdata_field{}]}).
|
|
|
|
|
2015-06-22 15:56:08 +02:00
|
|
|
-record(mam_query, {xmlns :: binary(),
|
|
|
|
id :: binary(),
|
|
|
|
start :: any(),
|
|
|
|
'end' :: any(),
|
|
|
|
with :: any(),
|
|
|
|
rsm :: #rsm_set{},
|
|
|
|
xdata :: #xdata{}}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(muc_owner, {destroy :: #muc_owner_destroy{},
|
|
|
|
config :: #xdata{}}).
|
|
|
|
|
2013-06-25 19:00:27 +02:00
|
|
|
-record(pubsub_options, {node :: binary(),
|
|
|
|
jid :: any(),
|
|
|
|
subid :: binary(),
|
|
|
|
xdata :: #xdata{}}).
|
|
|
|
|
|
|
|
-record(pubsub, {subscriptions :: {'none' | binary(),[#pubsub_subscription{}]},
|
|
|
|
affiliations :: [#pubsub_affiliation{}],
|
|
|
|
publish :: #pubsub_publish{},
|
|
|
|
subscribe :: #pubsub_subscribe{},
|
|
|
|
unsubscribe :: #pubsub_unsubscribe{},
|
|
|
|
options :: #pubsub_options{},
|
|
|
|
items :: #pubsub_items{},
|
|
|
|
retract :: #pubsub_retract{}}).
|
|
|
|
|
2014-09-03 19:27:35 +02:00
|
|
|
-record(register, {registered = false :: boolean(),
|
|
|
|
remove = false :: boolean(),
|
|
|
|
instructions :: binary(),
|
|
|
|
username :: 'none' | binary(),
|
|
|
|
nick :: 'none' | binary(),
|
|
|
|
password :: 'none' | binary(),
|
|
|
|
name :: 'none' | binary(),
|
|
|
|
first :: 'none' | binary(),
|
|
|
|
last :: 'none' | binary(),
|
|
|
|
email :: 'none' | binary(),
|
|
|
|
address :: 'none' | binary(),
|
|
|
|
city :: 'none' | binary(),
|
|
|
|
state :: 'none' | binary(),
|
|
|
|
zip :: 'none' | binary(),
|
|
|
|
phone :: 'none' | binary(),
|
|
|
|
url :: 'none' | binary(),
|
|
|
|
date :: 'none' | binary(),
|
|
|
|
misc :: 'none' | binary(),
|
|
|
|
text :: 'none' | binary(),
|
|
|
|
key :: 'none' | binary(),
|
|
|
|
xdata :: #xdata{}}).
|
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(disco_info, {node :: binary(),
|
2013-06-25 19:32:08 +02:00
|
|
|
identities = [] :: [#identity{}],
|
|
|
|
features = [] :: [binary()],
|
2013-06-17 20:04:32 +02:00
|
|
|
xdata = [] :: [#xdata{}]}).
|
|
|
|
|
|
|
|
-record(sasl_mechanisms, {list = [] :: [binary()]}).
|
|
|
|
|
2014-08-26 20:21:27 +02:00
|
|
|
-record(sm_failed, {reason :: atom() | #gone{} | #redirect{},
|
|
|
|
xmlns :: binary()}).
|
2014-07-22 11:59:31 +02:00
|
|
|
|
2013-06-17 20:04:32 +02:00
|
|
|
-record(error, {type :: 'auth' | 'cancel' | 'continue' | 'modify' | 'wait',
|
|
|
|
by :: binary(),
|
|
|
|
reason :: atom() | #gone{} | #redirect{},
|
|
|
|
text :: #text{}}).
|
|
|
|
|
|
|
|
-record(presence, {id :: binary(),
|
|
|
|
type :: 'error' | 'probe' | 'subscribe' | 'subscribed' | 'unavailable' | 'unsubscribe' | 'unsubscribed',
|
|
|
|
lang :: binary(),
|
|
|
|
from :: any(),
|
|
|
|
to :: any(),
|
|
|
|
show :: 'away' | 'chat' | 'dnd' | 'xa',
|
|
|
|
status = [] :: [#text{}],
|
|
|
|
priority :: integer(),
|
|
|
|
error :: #error{},
|
|
|
|
sub_els = [] :: [any()]}).
|
|
|
|
|
|
|
|
-record(message, {id :: binary(),
|
|
|
|
type = normal :: 'chat' | 'error' | 'groupchat' | 'headline' | 'normal',
|
|
|
|
lang :: binary(),
|
|
|
|
from :: any(),
|
|
|
|
to :: any(),
|
|
|
|
subject = [] :: [#text{}],
|
|
|
|
body = [] :: [#text{}],
|
|
|
|
thread :: binary(),
|
|
|
|
error :: #error{},
|
|
|
|
sub_els = [] :: [any()]}).
|
|
|
|
|
|
|
|
-record(iq, {id :: binary(),
|
|
|
|
type :: 'error' | 'get' | 'result' | 'set',
|
|
|
|
lang :: binary(),
|
|
|
|
from :: any(),
|
|
|
|
to :: any(),
|
|
|
|
error :: #error{},
|
|
|
|
sub_els = [] :: [any()]}).
|
|
|
|
|
|
|
|
-record(privacy_item, {order :: non_neg_integer(),
|
|
|
|
action :: 'allow' | 'deny',
|
|
|
|
type :: 'group' | 'jid' | 'subscription',
|
|
|
|
value :: binary(),
|
|
|
|
kinds = [] :: ['iq' | 'message' | 'presence-in' | 'presence-out']}).
|
|
|
|
|
|
|
|
-record(privacy_list, {name :: binary(),
|
|
|
|
items = [] :: [#privacy_item{}]}).
|
|
|
|
|
|
|
|
-record(privacy, {lists = [] :: [#privacy_list{}],
|
2013-06-25 19:00:27 +02:00
|
|
|
default :: 'none' | binary(),
|
|
|
|
active :: 'none' | binary()}).
|
2013-06-17 20:04:32 +02:00
|
|
|
|
|
|
|
-record(stream_error, {reason :: atom() | #'see-other-host'{},
|
|
|
|
text :: #text{}}).
|
|
|
|
|
|
|
|
-record(vcard_logo, {type :: binary(),
|
|
|
|
binval :: any(),
|
|
|
|
extval :: binary()}).
|
|
|
|
|
|
|
|
-record(vcard, {version :: binary(),
|
|
|
|
fn :: binary(),
|
|
|
|
n :: #vcard_name{},
|
|
|
|
nickname :: binary(),
|
|
|
|
photo :: #vcard_photo{},
|
|
|
|
bday :: binary(),
|
|
|
|
adr = [] :: [#vcard_adr{}],
|
|
|
|
label = [] :: [#vcard_label{}],
|
|
|
|
tel = [] :: [#vcard_tel{}],
|
|
|
|
email = [] :: [#vcard_email{}],
|
|
|
|
jabberid :: binary(),
|
|
|
|
mailer :: binary(),
|
|
|
|
tz :: binary(),
|
|
|
|
geo :: #vcard_geo{},
|
|
|
|
title :: binary(),
|
|
|
|
role :: binary(),
|
|
|
|
logo :: #vcard_logo{},
|
|
|
|
org :: #vcard_org{},
|
|
|
|
categories = [] :: [binary()],
|
|
|
|
note :: binary(),
|
|
|
|
prodid :: binary(),
|
|
|
|
rev :: binary(),
|
|
|
|
sort_string :: binary(),
|
|
|
|
sound :: #vcard_sound{},
|
|
|
|
uid :: binary(),
|
|
|
|
url :: binary(),
|
|
|
|
class :: 'confidential' | 'private' | 'public',
|
|
|
|
key :: #vcard_key{},
|
|
|
|
desc :: binary()}).
|
|
|
|
|
|
|
|
-record(time, {tzo :: any(),
|
|
|
|
utc :: any()}).
|
2014-09-03 19:27:35 +02:00
|
|
|
|
2014-09-13 20:54:07 +02:00
|
|
|
|