lighttpd 1.4.x
https://www.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
538 B
18 lines
538 B
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]; |
|
}
|
|
|