diff options
-rw-r--r-- | input | 2 | ||||
-rw-r--r-- | xml/signout.expected.xml | 2 | ||||
-rw-r--r-- | xml/signout.xml | 2 | ||||
-rwxr-xr-x | xmpt | 6 |
4 files changed, 8 insertions, 4 deletions
@@ -26,4 +26,4 @@ </bind> </iq> <iq from='test0@localhost' to='test0@localhost/xmpt' id='session' type='result'/> -</stream> +</stream:stream> diff --git a/xml/signout.expected.xml b/xml/signout.expected.xml index 522b4a3..4ae4038 100644 --- a/xml/signout.expected.xml +++ b/xml/signout.expected.xml @@ -1 +1 @@ -</stream> +</{stream}> diff --git a/xml/signout.xml b/xml/signout.xml index 522b4a3..34e306d 100644 --- a/xml/signout.xml +++ b/xml/signout.xml @@ -1 +1 @@ -</stream> +</stream:stream> @@ -245,7 +245,7 @@ sub assert_arg { # Stick actual execution in its own package so you don't accidentally # clobber stuff in main while running templates. -package evalpkg; +package evalpkg; # TODO: Make package name dynamic. use MIME::Base64; @@ -277,3 +277,7 @@ sub resourcepart() { sub plain_auth() { MIME::Base64::encode(join("\0", "", bare_jid(), $env{password})); } + +sub stream() { + main::assert_arg('stream', 'stream:stream'); +} |