-
Notifications
You must be signed in to change notification settings - Fork 856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bonding with rendez-vous mode #2158
Comments
Hi @kawi2006 |
Hi @maxsharabayko |
Yes, it is possible. Just create several listeners, bind each to the required UDP port. And set |
OK, but I got this message when two listener is used like a group to receive the same payload |
Could you define which SRT version do you use? Seems like it is not v1.4.4, right? Please also see these configuration guidelines. |
I'm using v1.4.3. |
SRT v1.4.3 also supports this feature. |
Thank you, the example helped me to find the root-cause. Another question please: by migrating from SRT v1.3 to v1.4.3 the SRTO_MAXBW option no longer wants to be set. Do you know what changes done between versions may impact this option? |
The |
Yes it was the type :D |
Just to mention a general rule of bonding with using multiple listener sockets: If you create a group (at the "caller side") and try to make multiple connections in the group, all of which will really be resolved into the same machine and application (if not, every next connection will fail), on the listener side the "accepted sockets" will also join the same mirror group upon reporting, no matter from which listener the sockets were extracted. |
Hi,
I am trying to implement the bonding feature for the possible SRT modes.
The documentation provided with the library has an introduction and some examples for the caller-listener couple, not for the rendez-vous mode.
I'm wondering if the bonding feature is already supported for rendez-vous mode?
If so, do you have an example to share with me?
Thank you
The text was updated successfully, but these errors were encountered: