File: state.dot

package info (click to toggle)
lighttpd 1.4.82-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,800 kB
  • sloc: ansic: 103,536; perl: 2,720; sh: 783; yacc: 726; makefile: 715
file content (18 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (14)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
digraph state {
  edge [color=green];
  connect -> reqstart -> read -> reqend -> handlereq -> respstart -> write -> respend -> connect;
  edge [color=grey];
  reqend -> readpost -> handlereq [ label="POST" ];
  edge [ color=blue]
  respend -> reqstart [ label="keep-alive" ];
  edge [ color=lightblue]
  handlereq -> handlereq [ label="sub-request" ];
  edge [style=dashed, color=red];
  error -> close -> connect;
  error -> connect;
  handlereq -> error;
  read -> error;
  readpost -> error;
  write -> error;
  connect [shape=box];
}