librtcdcpp icon indicating copy to clipboard operation
librtcdcpp copied to clipboard

A simple WebRTC DataChannels library

Results 22 librtcdcpp issues
Sort by recently updated
recently updated
newest added

What is the interconnect compatibility between librtcdcpp and the implementation of WebRTC DataChannel in mainstream browsers such as Chrome, Safari, and Firefox? I did not find any relevant description information,...

``` /usr/ports/www/librtcdcpp/work/librtcdcpp-49ddb949ed5dd2c8e859097b6723347f52e01645/src/DTLSWrapper.cpp:82:21: warning: 'DTLSv1_method' is deprecated [-Wdeprecated-declarations] ctx = SSL_CTX_new(DTLSv1_method()); ^ /usr/include/openssl/ssl.h:1895:1: note: 'DTLSv1_method' has been explicitly marked deprecated here DEPRECATEDIN_1_1_0(__owur const SSL_METHOD *DTLSv1_method(void)) /* DTLSv1.0 */ ^ /usr/include/openssl/opensslconf.h:147:34: note:...

I can see your code was being a client(or answer) role. I want to use it and try to make it can be both a client role and a server...

I was able to get librtcdcpp compiled, but before I dive in too deep I was curious of librtcdcpp's general performance. Obviously a lot of local variables can come into...

./testclient easywsclient: connecting: host=localhost port=5000 path=/channel/test Unable to connect to localhost:5000 WebSocket connection failed

Someone cross-compiler librtcdcpp and run on openwrt? Thank you.

Looking through the DataChannel.hpp channel types, there doesn't seem to be an unreliable option. Perhaps I am mis-understanding what webRTC means by unreliable -- is "reliable_unordered" what I am looking...

In order to facilitate a connection between two Cpp clients instead of the browser, we've added `PeerConnection::GenerateOffer()` and `PeerConnection::CreateDataChannel(std::string label, std::string protocol)` To see it in action, run the websockets...

I've had a glance at your code and it seems you're not handling the `MSG_EOR` flag which means you will treat incoming partial SCTP messages as whole messages, thus violating...

This is my first goal - to get this working successfully on Linux, including: - Simple C wrapper - Basic makefile - Small example client that uses librtcdcpp and libwebsockets...