You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given a DNS-name trio.open_tcp_stream currently has no way to limit the TCP connection to either IPv4 or IPv6 and has no way to bind the local socket to a specific interface or port. While this is not an issue in general and trio's native happy-eyeballs support is awesome, there are some advanced use cases where being more restrictive can be useful.
Given a DNS-name
trio.open_tcp_stream
currently has no way to limit the TCP connection to either IPv4 or IPv6 and has no way to bind the local socket to a specific interface or port. While this is not an issue in general and trio's native happy-eyeballs support is awesome, there are some advanced use cases where being more restrictive can be useful.To that point there is currently a patch proposed for
httpcore
/httpx
that allows overriding thelocal_addr
andfamily
parameters globally for a connection pool. It's missing trio support however as trio does not support the require parameters.The text was updated successfully, but these errors were encountered: