From a1659f7c34be92ea9c0dc02cb1cb454af7b3520c Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 22 Dec 2021 18:46:50 -0500 Subject: [PATCH] more notes --- cgi.d | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/cgi.d b/cgi.d index f7e3278..cc621ba 100644 --- a/cgi.d +++ b/cgi.d @@ -3486,7 +3486,11 @@ struct RequestServer { listeningPort = defaultPort; } - /// Reads the args into the other values. + /++ + Reads the command line arguments into the values here. + + Possible arguments are `--listening-host`, `--listening-port` (or `--port`), `--uid`, and `--gid`. + +/ void configureFromCommandLine(string[] args) { bool foundPort = false; bool foundHost = false;