Skip to content
Snippets Groups Projects

Add TUN support to ristsender and ristreceiver and add custom multiplexing support to library

Closed Sergio Ammirata requested to merge tun_support into master
3 unresolved threads

TUN support is only available under linux for now Custom muxing allows the use TUN interfaces by transfering ipv4 data through OOB and/or regular rist channel Default mux mode on sender is RIST_MUX_MODE_RAW and default mux mode on receiver is RIST_MUX_MODE_AUTO

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
74 74 #define RIST_URL_PARAM_STREAM_ID "stream-id"
75 75 #define RIST_URL_PARAM_RTP_TIMESTAMP "rtp-timestamp"
76 76 #define RIST_URL_PARAM_RTP_SEQUENCE "rtp-sequence"
77 #define RIST_URL_PARAP_RTP_OUTPUT_PTYPE "rtp-ptype"
77 #define RIST_URL_PARAM_RTP_OUTPUT_PTYPE "rtp-ptype"
78 #define RIST_URL_PARAM_MUX_MODE "mux-mode"
79 #define RIST_URL_PARAM_MUX_FILTER "mux-filter"
  • 88 90 #define RIST_ERR_MISSING_CALLBACK_FUNCTION -5
    89 91 #define RIST_ERR_NULL_CREDENTIALS -6
    90 92
    93 enum rist_mux_mode
    94 {
    95 RIST_MUX_MODE_RAW = 0,
    96 RIST_MUX_MODE_AUTO = 1,
    97 RIST_MUX_MODE_VIRT_SOURCE_PORT = 2,
    98 RIST_MUX_MODE_IPV4 = 3,
    99 };
    100
  • 564 564 "Dropping oob packet of size %d, max is %d.\n", oob_block->payload_len, RIST_MAX_PACKET_SIZE - 16);
    565 565 return -1;
    566 566 }
    567 return rist_oob_enqueue(cctx, oob_block->peer, oob_block->payload, oob_block->payload_len);
    567 struct rist_peer *peer = oob_block->peer;
    568 if (peer == NULL)
    569 peer = cctx->oob_current_peer;
  • added 1 commit

    • 1fa3eefc - Fix tun compilation flag for the case of compilation with built-in cjson

    Compare with previous version

  • added 1 commit

    • 7c32f236 - Fix broken return channel for tun callback

    Compare with previous version

  • added 1 commit

    • ce18d2f8 - Fix case of multiple udp inputs on sender in listening mode

    Compare with previous version

  • Please register or sign in to reply
    Loading