Go to file
HeroCC 792517ddb4 Fix compiling on MacOSX Systems
Setting those options made OSX quite upset for some reason, so disable them when on Macs. I haven't been able to find any issues with this, so hopefully it doesn't subtly break anything.

Additionally, this will add the default MacPorts library directory to the LD Path, which fixes linking against Log4CPP.
2020-03-26 21:05:38 +01:00
include merge and clean 2019-01-25 15:23:39 +07:00
src merge and clean 2019-01-25 15:23:39 +07:00
.gitignore remove boost include library from .gitignore 2018-03-21 10:46:07 +07:00
CMakeLists.txt Fix compiling on MacOSX Systems 2020-03-26 21:05:38 +01:00
LICENSE Initial commit 2015-10-25 14:26:53 +01:00
Mumble.proto Update mumble proto to latest version. 2018-04-12 08:33:44 +07:00
mumlib_example.cpp Add support for changing Opus encoder bitrate. #11 2016-04-15 03:13:56 +02:00
README.md Add README. 2015-11-07 19:21:48 +01:00

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.

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: