Network connection question

mdm

New member
Joined
May 31, 2005
Messages
1
Hi everyone,
Ive connected to a sites main server using secure sockets layer in C#. I need to make a tcp connection to another machine on this site and exchange info. I cant connect my socket directly to that machine because its ip address is private ie. 192.168.1.1. All the information from the second machine must pass through the secure socket Ive created with the original connection.
Does anyone know how I can access the second machine?
Ive gone through the socket classes in the .net framework and cant seem to find anything that can make the second connection and pipe it through the first. Im not a network programmer so I dont know if there is another way to do this. Any thoughts would be appreciated!
thanks
M :)
 
Is the second computer behind a hardware router? If so, in the routers configuration utlility you can forward a specific port number to that computers IP (if it is static) and make a secure socket connection via the port you specify.
 
Back
Top