25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-11-26 16:26:24 +01:00

Enable the new #xmlel record.

SVN Revision: 1367
This commit is contained in:
Jean-Sébastien Pédron 2008-06-20 12:50:20 +00:00
parent e4646a6788
commit a19f280fcc
2 changed files with 5 additions and 4 deletions

View File

@ -2,6 +2,8 @@
* src/configure, src/aclocal.m4, src/Makefile.in: Add exmpp detection.
* src/ejabberd_receiver.erl: Enable the new #xmlel record.
2008-06-19 Jean-Sébastien Pédron <js.pedron@meetic-corp.com>
* src/ejabberd_receiver.erl: Replace the use of xml_stream by

View File

@ -160,15 +160,14 @@ handle_call(reset_stream, _From,
Reply = ok,
{reply, Reply, State#state{xml_stream_state = NewXMLStreamState}};
handle_call({become_controller, C2SPid}, _From, State) ->
% XXX OLD FORMAT
Parser = exmpp_xml:start_parser([
{namespace, false},
{name_as_atom, false},
{namespace, true},
{name_as_atom, true},
{maxsize, State#state.max_stanza_size}
]),
XMLStreamState = exmpp_xmlstream:start(
{gen_fsm, C2SPid}, Parser,
[{xmlstreamstart, old}]
[{xmlstreamstart, new}]
),
NewState = State#state{c2s_pid = C2SPid,
xml_stream_state = XMLStreamState},