Hi guys, I'm trying to make a 'Remote Connection' type program in VB.Net using DarkNet to send the desktop image across to the server but I can't get it working properly.
When I set the IP address to 192.168.1.125, which is my pc IP address, it works perfectly fine and the client connects to the server and the server gets the image, but when I try and connect from another computer on my LAN it comes up with the error message attached.
All the computers that I've tried it on, including mine, have Windows Firewall turned off and no other firewall active. I also have nothing blocking the ports on any of the machines.
I've tried contacting the maker of Darknet on his email but I keep getting an email send failure email back from the MAILER DAEMON thing so I can't get an answer that way
Do any of you have any ideas on how to fix this?
Here's my code I'm using, (my IP address is the 192.168.1.125):
Start Server Code:
mn.Start(1, 0)
Dim LocalHost As String = mn.DNS("192.168.1.125")
mn.DisableUDP(0)
mn.SetLocal(0, LocalHost, 6565, "", 0)
mn.EnableGracefulDisconnect(0)
mn.SetAutoResizeTCP(0, 0, True)
mn.StartServer(0, 5, 0, 0)
Start Client Code:
mn.Start(1, 0)
Dim connectMessage As String = ConnectServer()
Dim LocalHost As String = mn.DNS("192.168.1.125")
mn.DisableUDP(0)
mn.EnableGracefulDisconnect(0)
mn.SetLocal(0, LocalHost, 0, "", 0)
Dim iReturn As Integer = mn.Connect(0, LocalHost, 6565, "", 0, 3, True)
Thanks in advance,
knxrb