Annotation of embedaddon/strongswan/src/stroke/stroke_keywords.txt, revision 1.1
1.1 ! misho 1: %{
! 2: /*
! 3: * Copyright (C) 2006 Andreas Steffen
! 4: * HSR Hochschule fuer Technik Rapperswil
! 5: *
! 6: * This program is free software; you can redistribute it and/or modify it
! 7: * under the terms of the GNU General Public License as published by the
! 8: * Free Software Foundation; either version 2 of the License, or (at your
! 9: * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
! 10: *
! 11: * This program is distributed in the hope that it will be useful, but
! 12: * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
! 13: * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
! 14: * for more details.
! 15: */
! 16:
! 17: #include <string.h>
! 18:
! 19: #include "stroke_keywords.h"
! 20:
! 21: %}
! 22: struct stroke_token {
! 23: char *name;
! 24: stroke_keyword_t kw;
! 25: };
! 26: %%
! 27: add, STROKE_ADD
! 28: del, STROKE_DEL
! 29: delete, STROKE_DELETE
! 30: route, STROKE_ROUTE
! 31: unroute, STROKE_UNROUTE
! 32: up, STROKE_UP
! 33: up-nb, STROKE_UP_NOBLK
! 34: down, STROKE_DOWN
! 35: down-nb, STROKE_DOWN_NOBLK
! 36: down-srcip, STROKE_DOWN_SRCIP
! 37: rekey, STROKE_REKEY
! 38: loglevel, STROKE_LOGLEVEL
! 39: status, STROKE_STATUS
! 40: statusall, STROKE_STATUSALL
! 41: statusallnb, STROKE_STATUSALL_NOBLK
! 42: statusall-nb, STROKE_STATUSALL_NOBLK
! 43: listpubkeys, STROKE_LIST_PUBKEYS
! 44: listcerts, STROKE_LIST_CERTS
! 45: listcacerts, STROKE_LIST_CACERTS
! 46: listocspcerts, STROKE_LIST_OCSPCERTS
! 47: listaacerts, STROKE_LIST_AACERTS
! 48: listacerts, STROKE_LIST_ACERTS
! 49: listgroups, STROKE_LIST_GROUPS
! 50: listcainfos, STROKE_LIST_CAINFOS
! 51: listcrls, STROKE_LIST_CRLS
! 52: listocsp, STROKE_LIST_OCSP
! 53: listalgs, STROKE_LIST_ALGS
! 54: listplugins, STROKE_LIST_PLUGINS
! 55: listall, STROKE_LIST_ALL
! 56: rereadsecrets, STROKE_REREAD_SECRETS
! 57: rereadcacerts, STROKE_REREAD_CACERTS
! 58: rereadocspcerts, STROKE_REREAD_OCSPCERTS
! 59: rereadaacerts, STROKE_REREAD_AACERTS
! 60: rereadacerts, STROKE_REREAD_ACERTS
! 61: rereadcrls, STROKE_REREAD_CRLS
! 62: rereadall, STROKE_REREAD_ALL
! 63: purgeocsp, STROKE_PURGE_OCSP
! 64: purgecrls, STROKE_PURGE_CRLS
! 65: purgecerts, STROKE_PURGE_CERTS
! 66: purgeike, STROKE_PURGE_IKE
! 67: exportx509, STROKE_EXPORT_X509
! 68: exportconncert, STROKE_EXPORT_CONN_CERT
! 69: exportconnchain, STROKE_EXPORT_CONN_CHAIN
! 70: leases, STROKE_LEASES
! 71: memusage, STROKE_MEMUSAGE
! 72: user-creds, STROKE_USER_CREDS
! 73: listcounters, STROKE_COUNTERS
! 74: resetcounters, STROKE_COUNTERS_RESET
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>