Network Application Winsock (Modem)
-
Hi, I want to develop an application (under Win98) which receives a call if someone connects and then send some files from a directory to the one who has connected. Please help Sameer
-
Hi, I want to develop an application (under Win98) which receives a call if someone connects and then send some files from a directory to the one who has connected. Please help Sameer
Does this design make any sense? 1. Using TCP/IP protocol. 2. run a server app on your PC, which monitor a predefined port all the time, to see if there is any request of file transfer. 3. on the other end of the link, run a client-like app, which tries to connect to your PC via that predefined port. Once connected, receive the file. After file is received in full, disconnect.
-
Does this design make any sense? 1. Using TCP/IP protocol. 2. run a server app on your PC, which monitor a predefined port all the time, to see if there is any request of file transfer. 3. on the other end of the link, run a client-like app, which tries to connect to your PC via that predefined port. Once connected, receive the file. After file is received in full, disconnect.