From RFC 3912:
3. Protocol Example
If one places a request of the WHOIS server located at whois.nic.mil for information about "Smith", the packets on the wire will look like:
client server at whois.nic.mil open TCP ---- (SYN) ------------------------------> <---- (SYN+ACK) ------------------------- send query ---- "Smith<CR><LF>" --------------------> get answer <---- "Info about Smith<CR><LF>" --------- <---- "More info about Smith<CR><LF>" ---- close <---- (FIN) ------------------------------ ----- (FIN) ----------------------------->
This:
client server at whois.nic.mil open TCP ---- (SYN) ------------------------------> <---- (SYN+ACK) -------------------------
Seems like a two way TCP handshake? Which, does that exist?
I think this is what that should be mentioned:
client server at whois.nic.mil open TCP ---- (SYN) ------------------------------> <---- (SYN+ACK) ------------------------- ---- (ACK) ------------------------------>
I think it is basically a shorthand to the three way handshake...