Add TUN support to ristsender and ristreceiver and add custom multiplexing support to library
Closed
Add TUN support to ristsender and ristreceiver and add custom multiplexing support to library
tun_support
into
master
3 unresolved threads
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
Activity
Filter activity
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 They control the behavior of the receiver. How it interprets the payload coming in. RAW is the current mode which makes no assumptions and passes the binary data AS-IS.
Edited by Sergio Ammirata
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
added 1 commit
- ce18d2f8 - Fix case of multiple udp inputs on sender in listening mode