From 03f7ec5a37e2a2816e07486723eda1c55de878a4 Mon Sep 17 00:00:00 2001 From: vanhofen Date: Tue, 5 Sep 2017 00:10:10 +0200 Subject: [PATCH] nhttpd: remove obsolete function to show commandline help Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/5a5ce505690a4fbe854a74bd18b87a78b7e81813 Author: vanhofen Date: 2017-09-05 (Tue, 05 Sep 2017) Origin message was: ------------------ - nhttpd: remove obsolete function to show commandline help ------------------ No further description and justification available within origin commit message! ------------------ This commit was generated by Migit --- src/nhttpd/yhttpd.cpp | 14 -------------- 1 file changed, 14 deletions(-) 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 //-----------------------------------------------------------------------------