Skip to content

Commit

Permalink
Merge branch 'master' of github.com:vppillai/embeddedWebServer-CGI_SSI
Browse files Browse the repository at this point in the history
  • Loading branch information
vppillai committed Mar 20, 2018
2 parents cdcbc77 + 4775cb7 commit d170290
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions doc/messageSequenceChart.msc
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,25 @@ HTTP_SERVER => HTTP_NET [label="close connection"];


HTTP_SERVER alt HTTP_FILE [label="request class-none",linecolor="blue"]{
HTTP_SERVER loop HTTP_FILE [label="until eof",linecolor="indigo"]{
HTTP_SERVER=>HTTP_FILE [label="read file contents"];
HTTP_FILE >> HTTP_SERVER [label="file contents"];
HTTP_SERVER => HTTP_RESPONSE [label="form response header"];
HTTP_RESPONSE >> HTTP_SERVER [label="response header"];
HTTP_SERVER => HTTP_NET [label="write response to network"];
HTTP_SERVER => HTTP_NET [label="write response to network"];};
HTTP_SERVER => HTTP_NET [label="close connection"];
};

HTTP_SERVER alt HTTP_SSI [label="request class-SSI",linecolor="orange"]{
HTTP_SERVER loop HTTP_FILE [label="until eof",linecolor="violet"]{
HTTP_SERVER=>HTTP_FILE [label="read file contents"];
HTTP_FILE >> HTTP_SERVER [label="file contents"];
HTTP_SERVER => HTTP_SSI [label="get replacement strings"];
HTTP_SSI >> HTTP_SERVER [label="replacement strings"];
HTTP_SERVER => HTTP_SERVER [label="perform replacements"];
HTTP_SERVER => HTTP_RESPONSE [label="form response header"];
HTTP_RESPONSE >> HTTP_SERVER [label="response header"];
HTTP_SERVER => HTTP_NET [label="write response to network"];
HTTP_SERVER => HTTP_NET [label="write response to network"];};
HTTP_SERVER => HTTP_NET [label="close connection"];
};

Expand Down
Binary file added doc/mscgenjs_chart.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit d170290

Please sign in to comment.