tags:

views:

89

answers:

1

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

+1  A: 

It's explained here: http://tools.ietf.org/html/rfc793

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

In short passive OPEN are listen() and active OPEN are connect().

tonfa