mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-02 14:55:58 +01:00
c6248ec000
This commit adds the ability to plug-in different compression handlers for different compression methods. It is also possible to add more then one handler for the same method. The order how the handlers are added determines which handler is tried first for usage. This is used for the 'zlib' compression method, which now can be either provided by Java7 or by JZlib (just like it was done before). git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@13522 b35dd754-fafc-0310-a699-88a17e54d16e
31 lines
991 B
XML
31 lines
991 B
XML
<?xml version="1.0"?>
|
|
<!-- Rename this file to test-case.xml to overwrite the default values of the Smack testcases -->
|
|
<testcase>
|
|
|
|
<!-- Host and port of the XMPP server to use -->
|
|
<host>localhost</host>
|
|
<port>5222</port>
|
|
|
|
<!-- Username prefix to use for creating accounts. -->
|
|
<username>user</username>
|
|
<!-- Password prefix to use for creating connections -->
|
|
<!-- If same password is true, then the same password will be used for all accounts -->
|
|
<!-- If password is not set, the username will be used as password -->
|
|
<!--
|
|
<password same='true'>passw0rd</password>
|
|
-->
|
|
<!-- Chat and MUC domain names to use -->
|
|
<chat>chat</chat>
|
|
<muc>conference</muc>
|
|
|
|
<!-- LoginTest parameters -->
|
|
<testAnonymousLogin>false</testAnonymousLogin>
|
|
|
|
<!-- Account creation parameters -->
|
|
<!--
|
|
<accountCreationParameters email="test@xcp.localhost" name="test"/>
|
|
-->
|
|
|
|
<compressionEnabled>false</compressionEnabled>
|
|
|
|
</testcase>
|