Learn about Linux
Download Linux
Get Linux help
Get special offers on:
Linux Application Dev Programming Software
Email:
#
Return to Create relationship diagrams with Graphviz
© Copyright 1999-2008 - SourceForge, Inc., All Rights Reserved About Linux.com - Privacy Statement - Terms of Use - Advertise - Trademark - Ask Linux Questions - Write for Us - RSS Feed ThinkGeek - Slashdot - SourceForge.net - freshmeat - Surveys - Jobs
another cool trick for GraphViz:
Posted by: Administrator on November 18, 2005 03:08 PMdigraph G {
subgraph P {
label = "passive close";
CLOSE_WAIT -> LAST_ACK;
}
subgraph A {
label = "active close";
FIN_WAIT_1 -> FIN_WAIT_2 -> TIME_WAIT;
FIN_WAIT_1 -> CLOSING -> TIME_WAIT;
FIN_WAIT_1 -> TIME_WAIT;
}
CLOSED -> LISTEN -> SYN_SENT -> ESTABLISHED -> FIN_WAIT_1;
CLOSED -> SYN_SENT -> CLOSED;
LISTEN -> SYN_RCVD -> LISTEN;
SYN_SENT -> SYN_RCVD -> FIN_WAIT_1;
SYN_RCVD -> ESTABLISHED -> CLOSE_WAIT;
TIME_WAIT -> CLOSED;
LAST_ACK -> CLOSED;
}
#