Compiling your own WebRTC client API to share RTCDataChannel files

I am trying to create my own command line application that supports:

  • native - native
  • native - browser
  • browser - browser

using the WebRTC data channel. However, I cannot figure out how to use the native C ++ API for WebRTC ( http://www.webrtc.org/reference/getting-started - successfully completed).

I have successfully built an example of peerconnection_client and peerconnection_client (on Linux), however, the client is trying to save money when trying to share the video (I'm not worried because I only need to transfer data to work, not audio or video). However, I could not compile my application, which is associated with the WebRTC library.

+4
source share

Source: https://habr.com/ru/post/1502214/


All Articles