Skip to content
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

Client Support IPv6 address #275

Open
jack-at-circle opened this issue Mar 15, 2023 · 0 comments
Open

Client Support IPv6 address #275

jack-at-circle opened this issue Mar 15, 2023 · 0 comments

Comments

@jack-at-circle
Copy link

The current New function supports taking an IPv4 address, but not an IPv6 address for initialization i.e.

func TestIPv6(t *testing.T) {
	// passes
	_, err := statsd.New("127.0.0.1")
	assert.NoError(t, err)

	// fails
	_, err = statsd.New("::1")
	assert.NoError(t, err)
}

It would be really nice if the New function would support IPv6 addresses in the same way to make service migrations to IPv6 not require code changes : )

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant