make max_message_size parameter consistent with similar options

This commit is contained in:
Andreas Steffen
2012-08-09 14:11:08 +02:00
parent 02cabd0f26
commit da21793679
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -554,7 +554,7 @@ tls_t *tnccs_11_create(bool is_server)
.is_server = is_server,
.mutex = mutex_create(MUTEX_TYPE_DEFAULT),
.max_msg_len = lib->settings->get_int(lib->settings,
"%s.plugins.tnccs-11.max_msg_size", 45000,
"%s.plugins.tnccs-11.max_message_size", 45000,
charon->name),
);
+1 -1
View File
@@ -805,7 +805,7 @@ tls_t *tnccs_20_create(bool is_server)
"%s.plugins.tnccs-20.max_batch_size", 65522,
charon->name),
.max_msg_len = lib->settings->get_int(lib->settings,
"%s.plugins.tnccs-20.max_msg_size", 65490,
"%s.plugins.tnccs-20.max_message_size", 65490,
charon->name),
);