aboutsummaryrefslogtreecommitdiffstats
path: root/src/swanctl/command.h
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2015-12-07 21:24:27 +0100
committerAndreas Steffen <andreas.steffen@strongswan.org>2015-12-11 18:26:55 +0100
commitb6dba6db744c8cb1b71c49f5d714765da1ac1236 (patch)
treea613d05304f2387801634c9b131edd677a6a8096 /src/swanctl/command.h
parent334119b843d7ac1f1987f74834b8fedf52964a25 (diff)
downloadstrongswan-b6dba6db744c8cb1b71c49f5d714765da1ac1236.tar.bz2
strongswan-b6dba6db744c8cb1b71c49f5d714765da1ac1236.tar.xz
Use of certificate_printer by swanctl --list-certs command
Diffstat (limited to 'src/swanctl/command.h')
-rw-r--r--src/swanctl/command.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/swanctl/command.h b/src/swanctl/command.h
index 5941fe89b..b7c6e4d85 100644
--- a/src/swanctl/command.h
+++ b/src/swanctl/command.h
@@ -2,6 +2,9 @@
* Copyright (C) 2009 Martin Willi
* Hochschule fuer Technik Rapperswil
*
+ * Copyright (C) 2015 Andreas Steffen
+ * HSR Hochschule fuer Technik Rapperswil
+ *
* This program 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
@@ -79,10 +82,12 @@ struct command_t {
* Command format options
*/
enum command_format_options_t {
- COMMAND_FORMAT_NONE = 0,
+ COMMAND_FORMAT_NONE = 0,
COMMAND_FORMAT_RAW = (1<<0),
COMMAND_FORMAT_PRETTY = (1<<1),
COMMAND_FORMAT_PEM = (1<<2),
+ COMMAND_FORMAT_SHORT = (1<<3),
+ COMMAND_FORMAT_UTC = (1<<4),
};
/**