-
Notifications
You must be signed in to change notification settings - Fork 5
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
Add ability to declare IPAddress
when configuring a Port
#313
Comments
Merged
I think this functionality is great, but maybe not necessary until after a I see it as being able to pass in public sealed class AnyHost private constructor(
@JvmField
public val address: IPAddress,
): Address(address.value) {
public object IPv4: AnyHost("0.0.0.0".toIPAddressV4())
public object IPv6: AnyHost("::0".toIPAddressV6())
} |
May also want to consider adding the TorConfig settings for IP protocol preferences. |
Will do this in future 2.x.0 release |
IPAddress
when configuring a Port
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
See #312 (comment)
Would be preferred to have some sort of
Localhost
object where resolution of the actual loopback IP address can be had.The configuration should accept
IPaddress?
Need to also verify how not including a prefixing IP address will be handled by tor. Documentation states that
127.0.0.1
will be used, which is entirely incorrect.The text was updated successfully, but these errors were encountered: