BiagioFesta / wtransport

Async-friendly WebTransport implementation in Rust
Apache License 2.0
346 stars 19 forks source link

Feature request: `SessionRequest::remote_address(&self) -> SocketAddr` #161

Closed finnbear closed 2 months ago

finnbear commented 2 months ago

I'd like the remote address for rate-limiting. Right now, I have to accept the connection and then use Connection::remote_address(&self) -> SocketAddr, at which point it is too late to reject.

Thanks for making this library!