123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>libdatachannel</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta charset="utf-8">
- <link href="https://libdatachannel.org/feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="libdatachannel Full Atom Feed">
- <!-- twitter card metadata -->
- <meta name="twitter:site" content="">
- <meta name="twitter:title" content="libdatachannel">
- <meta name="twitter:description" content="">
- <!-- OG Tags -->
- <meta property="og:url" content="https://libdatachannel.org/"/>
- <meta property="og:title" content="libdatachannel | libdatachannel" />
- <meta property="og:description" content="" />
- <!-- favicon -->
- <!-- css -->
- <link rel="stylesheet" type="text/css" href="https://libdatachannel.org/theme/css/main.css">
- <link rel="stylesheet" type="text/css" href="https://libdatachannel.org/theme/css/pygments-highlight.css">
- </head>
- <body>
- <a href="https://github.com/paullouisageneau/libdatachannel">
- <img style="position: absolute; top: 0; right: 0; border: 0;" src="https://libdatachannel.org/images/forkme_right_gray_6d6d6d.svg" alt="Fork me on GitHub" />
- </a>
- <div role="banner" id="banner">
- <header>
- <nav id="menu">
- <ul>
- <li class="active"><a href="https://libdatachannel.org/">libdatachannel</a></li>
- <li><a href="https://libdatachannel.org/pages/reference.html">reference</a></li>
- </ul>
- </nav>
- </header>
- </div>
- <div class="page" role="main">
- <div class="article" role="article">
- <article>
- <header>
- <h1>
- libdatachannel
- </h1>
- </header>
- <div class="content">
- <div id="home">
- <header>
- <p>libdatachannel is an open-source software library implementing WebRTC Data Channels, WebRTC Media Transport, and WebSockets. It is written in C++17 and offers C bindings. The <a href="https://github.com/paullouisageneau/libdatachannel">source code</a> is available under MPL 2.0, and the library is on <a href="https://aur.archlinux.org/packages/libdatachannel/">AUR</a>, <a href="https://github.com/Microsoft/vcpkg/tree/master/ports/libdatachannel">Vcpkg</a>, and <a href="https://github.com/Microsoft/vcpkg/tree/master/ports/libdatachannel">FreeBSD Ports</a>.</p>
- <div class="social">
- <a href="https://github.com/paullouisageneau/libdatachannel"><img src="/images/icon_github.png" alt="GitHub"></a>
- <a href="https://gitter.im/libdatachannel/community"><img src="/images/icon_gitter.png" alt="Gitter"></a>
- <a href="https://discord.gg/jXAP8jp3Nn"><img src="/images/icon_discord.png" alt="Discord"></a>
- </div>
- </header>
- <section>
- <img src="/images/icon_easy.png">
- <h3>Easy</h3>
- <ul>
- <li>Simple API inspired by the JavaScript API including WebSocket for signaling</li>
- <li>Minimal external dependencies (only <a href="https://www.openssl.org/">OpenSSL</a> or <a href="https://www.openssl.org/">GnuTLS</a>)
- <li>Lightweight and way easier to compile and use than Google's <a href="https://webrtc.googlesource.com/src/">reference library</a>
- </ul>
- </section>
- <section>
- <img src="/images/icon_compatible.png">
- <h3>Compatible</h3>
- <ul>
- <li>Compatible with browsers Firefox, Chromium, and Safari, and other WebRTC libraries (see <a href="https://github.com/sipsorcery/webrtc-echoes">webrtc-echoes</a>)</li>
- <li>Licensed under <a href="https://www.mozilla.org/en-US/MPL/2.0/FAQ/">MPL 2.0</a>, meaning software with any license may use the library</li>
- <li>Community-maintained bindings available for <a href="https://github.com/lerouxrgd/datachannel-rs">Rust</a>, <a href="https://github.com/murat-dogan/node-datachannel">Node.js</a>, and <a href="https://github.com/hanseuljun/datachannel-unity">Unity</a></li>
- </ul>
- </section>
- <section>
- <img src="/images/icon_portable.png">
- <h3>Portable</h3>
- <ul>
- <li>Support for POSIX platforms (including GNU/Linux, Android, FreeBSD, Apple macOS and iOS) and Microsoft Windows</li>
- <li>Support for <a href="https://www.gnutls.org/">GnuTLS</a>, <a href="https://www.trustedfirmware.org/projects/mbed-tls/">Mbed TLS</a>, or <a href="https://www.openssl.org/">OpenSSL</a> as TLS backend
- <li>Code using Data Channels and WebSockets may be compiled as-is to WebAssembly for browsers with <a href="https://github.com/paullouisageneau/datachannel-wasm">datachannel-wasm</a></li>
- </ul>
- </section>
- <div class="sponsor">
- <iframe src="https://github.com/sponsors/paullouisageneau/button" title="Sponsor paullouisageneau" height="35" width="116" style="border: 0;"></iframe>
- <div class="liberapay"><a href="https://liberapay.com/paullouisageneau/donate"><img alt="Donate using Liberapay" src="https://liberapay.com/assets/widgets/donate.svg"></a></div>
- <div class="ko-fi"><a href='https://ko-fi.com/A0A8CIDHU' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://cdn.ko-fi.com/cdn/kofi3.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a></div>
- </div>
- </div>
- <div class="back-to-top">
- <a href="#top">back to top</a>
- </div>
- </article>
- </div>
- <!-- end article -->
- <footer>
- <p>© 2021 Paul-Louis Ageneau</p>
- </footer>
- </div>
- </body>
- </html>
|