Go to file
Michał Słomkowski 193c498312 Merge pull request #5 from NerdyProjects/join_channel
Implement joinChannel command
2015-12-01 23:13:51 +01:00
include Implement joinChannel command 2015-11-30 20:24:54 +01:00
src Implement joinChannel command 2015-11-30 20:24:54 +01:00
.gitignore Add source files from old repository. 2015-10-25 14:40:16 +01:00
CMakeLists.txt Change CMake version to 2.8.0. 2015-11-23 20:28:44 +01:00
LICENSE Initial commit 2015-10-25 14:26:53 +01:00
Mumble.proto Update Mumble.proto to 1.2.10. 2015-10-25 14:50:53 +01:00
mumlib_example.cpp Add 'override' to virtual function overloads. 2015-11-17 23:09:18 +01: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: