New: IPv6 support for connections/indexers/download clients

Closes #2026

(cherry picked from commit 1b90fbcf7df2c1086da4791c6491771924b1b7aa)
This commit is contained in:
Mark McDowall
2022-12-05 00:57:21 -08:00
committed by Qstick
parent 7dc061cc8a
commit 8a4d309d57
4 changed files with 18 additions and 4 deletions

View File

@@ -10,6 +10,7 @@ namespace NzbDrone.Common.Test.Http
[TestCase("abc://my_host.com:8080/root/api/")]
[TestCase("abc://my_host.com:8080//root/api/")]
[TestCase("abc://my_host.com:8080/root//api/")]
[TestCase("abc://[::1]:8080/root//api/")]
public void should_parse(string uri)
{
var newUri = new HttpUri(uri);