Open JJakaJonas opened 6 years ago
This issue doesn't provide any kind of information. I need tt least the log file.
Was not able to make one and I do not have the application any more.
I'm not seeing what the issue is here, but in my case I added a Thread.Sleep(2000) call on Form_Closing, which properly waits for the entry to delete from router table and close application. If you don't wait on it, it won't have time to remove ports (in my case, on a brand new Aeris DOCSIS 3.1 modem).
Just some insight.
Hello. I have an huawei HA35 router. It's a hybrid thing. It have a DSL and a LTE connection that it bonding together to one connection. But the thing is that this code ` namespace Auto_open_UPnP { class Program { public static void Main(string[] args) { Open.Nat.NatDiscoverer.TraceSource.Switch.Level = SourceLevels.Verbose; Open.Nat.NatDiscoverer.TraceSource.Listeners.Add(new ColorConsoleTraceListener()); Test().Wait(); var endPoint = new IPEndPoint(IPAddress.Any, 1602); var socket = new Socket(endPoint.AddressFamily, SocketType.Stream, ProtocolType.Tcp); socket.SetIPProtectionLevel(IPProtectionLevel.Unrestricted); socket.Bind(endPoint); socket.Listen(4);
}
} ` The application breaks already at "Test().Wait();" but if i use my regular xDSL router it works. I don't know what's the reson for the break but if you need more info to help me fix this just tell me what and how and then i will do my best to give you the info.