Explain SOCK STREAM in socket programming?
vignesh 26-October-2007 06:29:26 PM

Comments


socket sock = new Socket(ip1,port1) ; Then i use this socket to make streams and do the following. ...
Posted by waqasahmad


SOCK_STREAM:
- destination determined during conn. setup
- don’t need to know port sending from (during connection setup, receiving end is informed of port)

Posted by Aadarsh



Posted: 26-October-2007 06:38:51 PM By: Aadarsh

SOCK_STREAM:
- destination determined during conn. setup
- don’t need to know port sending from (during connection setup, receiving end is informed of port)

Posted: 30-December-2008 11:52:45 PM By: waqasahmad

socket sock = new Socket(ip1,port1) ; Then i use this socket to make streams and do the following. ...