Listening to a Port
-
Hi, I am facing lots of problem in writing a port listener. My goal was to listen the ports used by anathor application. I found some ready-made port listeners from the web. But I want to develop one for myself. The platform can be VB/VB .NET. Please help me out.... Just do it... Dev
-
Hi, I am facing lots of problem in writing a port listener. My goal was to listen the ports used by anathor application. I found some ready-made port listeners from the web. But I want to develop one for myself. The platform can be VB/VB .NET. Please help me out.... Just do it... Dev
I'm no expert when it comes to sockets, but I think you've got one problem. If you try to bind an EndPoint to a port that is already in use by another application, the bind will fail. You can't have two different apps listening on the same port. What I think you'll have to do is capture the TCP/UDP traffic and filter out just the ports you need. And I have no idea how to do that... RageInTheMachine9532
-
I'm no expert when it comes to sockets, but I think you've got one problem. If you try to bind an EndPoint to a port that is already in use by another application, the bind will fail. You can't have two different apps listening on the same port. What I think you'll have to do is capture the TCP/UDP traffic and filter out just the ports you need. And I have no idea how to do that... RageInTheMachine9532