Skip to content

Suggestion to support IPV6 #4

@ijro

Description

@ijro

In some circumstances accessing IPV6 the exception "System.NotSupportedException" is thrown at line 9255.

bridge.Connect(ip, 443);

To correct it, just change two lines (in Form1 line 9242 and 9243):

Socket bridge = new Socket (AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
IPAddress ip = GetIPOfHost (_host);

To:

IPAddress ip = GetIPOfHost (_host);
Socket bridge = new Socket (ip.AddressFamily, SocketType.Stream, ProtocolType.Tcp); 

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions