HttpStateGraph.gv 289 B

12345678
  1. // This can be regenerated with the following command:
  2. // dot -Tpdf -o HttpStateGraph.pdf HttpStateGraph.gv
  3. digraph {
  4. server_init[label = "ServerInit"];
  5. listening[label = "Listening"];
  6. server_init -> listening [label = " Activate"];
  7. listening -> listening [label = " Request"];
  8. }