diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2015-12-11 18:24:58 +0100 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2015-12-12 00:19:24 +0100 |
commit | 02d431022c45cf9638b13aa84c0d485a655d370b (patch) | |
tree | 9e7a65f99d2a7eac53588a60ebccc64ecf936f2e /src/swanctl/command.h | |
parent | 4df09fe563383692f2e4a9ccf083b32c92d7e5c5 (diff) | |
download | strongswan-02d431022c45cf9638b13aa84c0d485a655d370b.tar.bz2 strongswan-02d431022c45cf9638b13aa84c0d485a655d370b.tar.xz |
Refactored certificate management for the vici and stroke interfaces5.4.0dr1
Diffstat (limited to 'src/swanctl/command.h')
-rw-r--r-- | src/swanctl/command.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/swanctl/command.h b/src/swanctl/command.h index b7c6e4d85..7eb11a68d 100644 --- a/src/swanctl/command.h +++ b/src/swanctl/command.h @@ -2,9 +2,6 @@ * 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 @@ -35,7 +32,7 @@ /** * Maximum number of options in a command (+3) */ -#define MAX_OPTIONS 32 +#define MAX_OPTIONS 34 /** * Maximum number of usage summary lines (+1) @@ -82,12 +79,10 @@ 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), }; /** |