Nessuna descrizione

Patrik Dahlström bb2cfe636c Compile and link example again 4 anni fa
include e402d62f33 add initial support for client certs 4 anni fa
src e402d62f33 add initial support for client certs 4 anni fa
.gitignore 6b846aff05 Add source files from old repository. 8 anni fa
CMakeLists.txt bb2cfe636c Compile and link example again 4 anni fa
LICENSE 261df114d2 Initial commit 8 anni fa
Mumble.proto 38f4805660 Update mumble proto to latest version. 6 anni fa
README.md e402d62f33 add initial support for client certs 4 anni fa
mumlib_example.cpp e402d62f33 add initial support for client certs 4 anni fa

README.md

mumlib - simple Mumble client library

Fairy simple Mumble library written in C++, using boost::asio asynchronous networking framework. Library supports:

  • audio streaming through TCP and UDP channel
  • text messaging

Todo:

  • channel support
  • user information
  • remaining server messages (ACL, user stats etc)

Dependencies

  • Boost libraries
  • OpenSSL
  • log4cpp
  • Opus library
  • Google Protobuf: libraries and compiler
  • CMake

Build

The library uses CMake build system:

mkdir build && cd build
cmake ..
make

Usage

Sample usage is covered in mumlib_example.cpp file. Basically, you should extend mumlib::Callback class to implement your own handlers.

To use a client certificate, you'll need a PEM certificate and private key without a passphrase. These are assed in the MumlibConfig struct to the Mumlib object constructor. Support for passphrase still needs to be added.

Credits

2015 Michał Słomkowski. The code is published under the terms of Lesser General Public License Version 3.

The library contains code from following 3rd party projects: