fixed encoding rules string

updated todo
This commit is contained in:
Martin Willi
2006-12-14 13:16:19 +00:00
parent 313d21c251
commit 38fb426e9b
2 changed files with 15 additions and 15 deletions
+4 -3
View File
@@ -59,12 +59,12 @@ Todo-List for charon
+ find existing IKE_SA on CHILD_SA initiation + find existing IKE_SA on CHILD_SA initiation
+ use dpdaction/dpddelay parameters from ipsec.conf + use dpdaction/dpddelay parameters from ipsec.conf
/ add firewall script support + add firewall script support
+ do not link unneeded libraries in bins + do not link unneeded libraries in bins
+ include only a minimum of NATD payloads + include only a minimum of NATD payloads
+ implement 3DES to load encrypted pem files + implement 3DES to load encrypted pem files
+ implement a "event bus" mechanism + implement a "event bus" mechanism
/ add more output to to up/down, somehow... + add more output to to up/down, somehow...
- detach console after first keyingtry - detach console after first keyingtry
- proper handling of CTRL+C console detach (SIG_PIPE) - proper handling of CTRL+C console detach (SIG_PIPE)
- configure flag which allows to ommit vendor id in pluto - configure flag which allows to ommit vendor id in pluto
@@ -78,6 +78,7 @@ Todo-List for charon
- add a Rekey-Counter for SAs in "statusall" - add a Rekey-Counter for SAs in "statusall"
- ipsec status: - ipsec status:
+ on one line: ip, id, spi + on one line: ip, id, spi
- no key age, rekey for IKE + no key age, rekey for IKE
- byte count - byte count
- retry transaction on failure while keyingtries > 1 - retry transaction on failure while keyingtries > 1
- reduce printf handlers count to 10, as uClibc does not support more
+10 -11
View File
@@ -24,13 +24,12 @@
#include "encodings.h" #include "encodings.h"
ENUM(encoding_type_names, U_INT_4, UNKNOWN_DATA, ENUM(encoding_type_names, U_INT_4, ENCRYPTED_DATA,
"U_INT_4", "U_INT_4",
"U_INT_8", "U_INT_8",
"U_INT_16", "U_INT_16",
"U_INT_32", "U_INT_32",
"U_INT_64", "U_INT_64",
"IKE_SPI",
"RESERVED_BIT", "RESERVED_BIT",
"RESERVED_BYTE", "RESERVED_BYTE",
"FLAG", "FLAG",
@@ -43,25 +42,25 @@ ENUM(encoding_type_names, U_INT_4, UNKNOWN_DATA,
"PROPOSALS", "PROPOSALS",
"TRANSFORMS", "TRANSFORMS",
"TRANSFORM_ATTRIBUTES", "TRANSFORM_ATTRIBUTES",
"CONFIGURATION_ATTRIBUTES",
"CONFIGURATION_ATTRIBUTE_VALUE",
"ATTRIBUTE_FORMAT", "ATTRIBUTE_FORMAT",
"ATTRIBUTE_TYPE", "ATTRIBUTE_TYPE",
"ATTRIBUTE_LENGTH_OR_VALUE", "ATTRIBUTE_LENGTH_OR_VALUE",
"CONFIGURATION_ATTRIBUTE_LENGTH",
"ATTRIBUTE_VALUE", "ATTRIBUTE_VALUE",
"TRAFFIC_SELECTORS",
"TS_TYPE",
"ADDRESS",
"NONCE_DATA", "NONCE_DATA",
"ID_DATA", "ID_DATA",
"AUTH_DATA", "AUTH_DATA",
"ENCRYPTED_DATA",
"TS_TYPE",
"ADDRESS",
"TRAFFIC_SELECTORS",
"CERT_DATA", "CERT_DATA",
"CERTREQ_DATA", "CERTREQ_DATA",
"EAP_DATA",
"SPIS", "SPIS",
"VID_DATA", "VID_DATA",
"VID_DATA",
"CONFIGURATION_ATTRIBUTES",
"CONFIGURATION_ATTRIBUTE_LENGTH",
"CONFIGURATION_ATTRIBUTE_VALUE",
"EAP_MESSAGE",
"UNKNOWN_DATA", "UNKNOWN_DATA",
"IKE_SPI",
"ENCRYPTED_DATA",
); );