aboutsummaryrefslogtreecommitdiff
path: root/src/ProcessArguments.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-08-03 21:30:36 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-08-03 21:30:36 -0400
commita5a50369250ff5c7d8f1fa53fc31ddb1da2a04a6 (patch)
treed148d7f6d19394f3627b64675ee665fb51a76745 /src/ProcessArguments.cs
parent96fc2b9f719f5c82841a93a17e9e4e2ac1f69487 (diff)
Pre-public update
Diffstat (limited to 'src/ProcessArguments.cs')
-rw-r--r--src/ProcessArguments.cs23
1 files changed, 21 insertions, 2 deletions
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");