RFC 1006 ACTIVE / PASSIVE

What is the difference between ACTIVE and PASSIVE connect in RFC 1006 TCP connections?

+2


source to share


1 answer


It explains here: http://tools.ietf.org/html/rfc793

A passive OPEN request means that the process wants to accept incoming connection requests rather than try to initiate a connection.



In short passive OPEN is listen()

, and active OPEN - connect()

.

+4


source







All Articles