diff options
author | Martin Willi <martin@revosec.ch> | 2014-09-30 18:43:20 +0200 |
---|---|---|
committer | Martin Willi <martin@revosec.ch> | 2014-10-10 11:42:17 +0200 |
commit | d39e04b5577ebbe6a3b916f55b797b792d701753 (patch) | |
tree | 1fd19494925e813ae160bea7c717de3ec1c863a3 /src | |
parent | 05db0f97e3051150a38511fdb35c9d58bb6e989b (diff) | |
download | strongswan-d39e04b5577ebbe6a3b916f55b797b792d701753.tar.bz2 strongswan-d39e04b5577ebbe6a3b916f55b797b792d701753.tar.xz |
vici: Fix message encoding type values in documentation
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/plugins/vici/README.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/libcharon/plugins/vici/README.md b/src/libcharon/plugins/vici/README.md index aeabbbd4d..598be1fb6 100644 --- a/src/libcharon/plugins/vici/README.md +++ b/src/libcharon/plugins/vici/README.md @@ -84,12 +84,12 @@ The message encoding consists of a sequence of elements. Each element starts with the element type, optionally followed by an element name and/or an element value. Currently the following message element types are defined: -* _SECTION_START = 0_: Begin a new section having a name -* _SECTION_END = 1_: End a previously started section -* _KEY_VALUE = 2_: Define a value for a named key in the current section -* _LIST_START = 3_: Begin a named list for list items -* _LIST_ITEM = 4_: Define an unnamed item value in the current list -* _LIST_END = 5_: End a previously started list +* _SECTION_START = 1_: Begin a new section having a name +* _SECTION_END = 2_: End a previously started section +* _KEY_VALUE = 3_: Define a value for a named key in the current section +* _LIST_START = 4_: Begin a named list for list items +* _LIST_ITEM = 5_: Define an unnamed item value in the current list +* _LIST_END = 6_: End a previously started list Types are encoded as 8-bit values. Types having a name (SECTION_START, KEY_VALUE and LIST_START) have an ASCII string following the type, which itself |