diff --git a/src/nhttpd/yhttpd.cpp b/src/nhttpd/yhttpd.cpp index 163444d5d..6b24e014e 100644 --- a/src/nhttpd/yhttpd.cpp +++ b/src/nhttpd/yhttpd.cpp @@ -229,20 +229,6 @@ void Cyhttpd::version(FILE *dest) { fprintf(dest, "%s - Webserver v%s\n", HTTPD_NAME, HTTPD_VERSION); } -//----------------------------------------------------------------------------- -// Show Usage -//----------------------------------------------------------------------------- -void Cyhttpd::usage(FILE *dest) { - version(dest); - fprintf(dest, "command line parameters:\n"); - fprintf(dest, "-d, --debug enable debugging code (implies -f)\n"); - fprintf(dest, "-f, --fork do not fork\n"); - fprintf(dest, "-h, --help display this text and exit\n\n"); - fprintf(dest, "-v, --version display version and exit\n"); - fprintf(dest, "-l, set loglevel (0 .. 9)\n"); - fprintf(dest, "-t, --thread-off set threading off\n"); -} - //----------------------------------------------------------------------------- // Stop WebServer //-----------------------------------------------------------------------------