We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
First of all, this is a pretty cool project, thanks for all the efforts!
I'm currently using this in our project, and I need to access the send_addr field of the Rtc struct. Is it possible to add a simple getter like
send_addr
Rtc
pub fn send_addr(&self) -> Option<(SocketAddr, SocketAddr)> { if let Some(send_addr) = &self.send_addr { return Some((send_addr.source, send_addr.destination)); } None }
to the Rtc struct?
The text was updated successfully, but these errors were encountered:
Hello! Thanks!
I suppose current_send_addr() or something like that.
current_send_addr()
I guess grabbing it from the outgoing packets means there's risk you get a probe packet for some ICE candidate?
Sorry, something went wrong.
Yeah, it would be nicer if we can get it directly from Rtc.
No branches or pull requests
First of all, this is a pretty cool project, thanks for all the efforts!
I'm currently using this in our project, and I need to access the
send_addr
field of theRtc
struct. Is it possible to add a simple getter liketo the
Rtc
struct?The text was updated successfully, but these errors were encountered: