Dmitry Podgorny beaaab5742 tls_schannel: don't force RC4 for TLS handshake
Leave default configuration. A particular server closes tcp connection
during negotiation otherwise.

tls_schannel is still broken and tls_read() fails with
SEC_E_UNSUPPORTED_FUNCTION error.
2016-09-03 16:38:43 +03:00
2016-08-22 15:52:31 +03:00
2016-09-02 19:57:25 +03:00
2016-08-22 15:52:31 +03:00
2014-04-25 19:22:45 +02:00
2016-08-22 15:52:31 +03:00
2016-09-02 00:47:58 +03:00
2016-04-28 22:37:27 +00:00
2014-05-09 17:04:10 +02:00
2012-02-07 23:32:18 -07:00
2016-08-29 20:09:45 +03:00
2014-04-25 19:22:45 +02:00
2014-04-26 12:03:14 +02:00
2016-08-22 15:52:31 +03:00
2016-09-02 00:47:58 +03:00
2014-10-23 08:44:52 +02:00
2014-04-25 19:22:45 +02:00

libstrophe
==========

libstrophe is a lightweight XMPP client library written in C. It has
minimal dependencies and is configurable for various environments. It
runs well on Linux, Unix and Windows based platforms.

Its goals are:

- usable quickly
- well documented
- reliable

Build Instructions
------------------

If you are building from a source control checkout, run:

    ./bootstrap.sh

to generate the `configure` script.

From the top-level directory, run the following commands:

    ./configure
    make

The public API is defined in `strophe.h` which is in the
top-level directory.

The `examples` directory contains some examples of how to
use the library; these may be helpful in addition to the
API documentation

To install on your system, as root (or using sudo):

    make install

Note, the default install path is `/usr/local/`, to specify
another path use the `--prefix` option during configure, e.g.:

    ./configure --prefix=/usr

### Android

Run script `build-android.sh` and follow the instructions. You will
need expat sources and android-ndk.

Requirements
------------

libstrophe requires:

- expat or libxml2 - expat is the default; use --with-libxml2 to
  switch
- openssl on UNIX systems

To build libstrophe using autotools you will need autoconf, automake
and libtool.

In addition, if you wish to run the unit tests, you will need the
check package.

Installation
------------

libstrophe package has been added to popular Linux distributions,
BSD systems and OSX package managers.

Documentation
-------------

API documentation is inline with the code and conforms to Doxygen
standards. You can generate an HTML version of the API documentation
by running:

    doxygen

Then open `docs/html/index.html`.
Description
Languages
C 95.1%
M4 2.9%
Makefile 1.7%
Shell 0.3%