From a5a50369250ff5c7d8f1fa53fc31ddb1da2a04a6 Mon Sep 17 00:00:00 2001 From: vnugent Date: Thu, 3 Aug 2023 21:30:36 -0400 Subject: Pre-public update --- src/ProcessArguments.cs | 23 +++++++++++++++++++++-- 1 file changed, 21 insertions(+), 2 deletions(-) (limited to 'src/ProcessArguments.cs') diff --git a/src/ProcessArguments.cs b/src/ProcessArguments.cs index df683e5..4d1febd 100644 --- a/src/ProcessArguments.cs +++ b/src/ProcessArguments.cs @@ -1,4 +1,24 @@ -using System; +/* +* Copyright (c) 2023 Vaughn Nugent +* +* Package: PkiAuthenticator +* File: ProcessArguments.cs +* +* PkiAuthenticator is free software: you can redistribute it and/or modify +* it under the terms of the GNU General Public License as published +* by the Free Software Foundation, either version 2 of the License, +* or (at your option) any later version. +* +* PkiAuthenticator is distributed in the hope that it will be useful, +* but WITHOUT ANY WARRANTY; without even the implied warranty of +* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +* General Public License for more details. +* +* You should have received a copy of the GNU General Public License +* along with PkiAuthenticator. If not, see http://www.gnu.org/licenses/. +*/ + +using System; using System.Linq; using System.Collections.Generic; @@ -15,7 +35,6 @@ namespace PkiAuthenticator public bool Verbose => HasArg("-v") || HasArg("--verbose"); public bool Debug => HasArg("-d") || HasArg("--debug"); public bool Silent => HasArg("-s") || HasArg("--silent"); - public bool RpMalloc => HasArg("--rpmalloc"); public bool DoubleVerbose => Verbose && HasArg("-vv"); public bool LogHttp => HasArg("--log-http"); -- cgit