mirror of
https://github.com/strongswan/strongswan.git
synced 2025-10-05 00:00:45 -04:00
make max_message_size parameter consistent with similar options
This commit is contained in:
parent
02cabd0f26
commit
da21793679
@ -500,13 +500,13 @@ certificates even if they don't contain a CA basic constraint.
|
||||
.BR charon.plugins.stroke.max_concurrent " [4]"
|
||||
Maximum number of stroke messages handled concurrently
|
||||
.TP
|
||||
.BR charon.plugins.tnccs-11.max_msg_size " [45000]"
|
||||
.BR charon.plugins.tnccs-11.max_message_size " [45000]"
|
||||
Maximum size of a PA-TNC message (XML & Base64 encoding)
|
||||
.TP
|
||||
.BR charon.plugins.tnccs-20.max_batch_size " [65522]"
|
||||
Maximum size of a PB-TNC batch (upper limit via PT-EAP = 65529)
|
||||
.TP
|
||||
.BR charon.plugins.tnccs-20.max_msg_size " [65490]"
|
||||
.BR charon.plugins.tnccs-20.max_message_size " [65490]"
|
||||
Maximum size of a PA-TNC message (upper limit via PT-EAP = 65497)
|
||||
.TP
|
||||
.BR charon.plugins.tnc-ifmap.device_name
|
||||
|
@ -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),
|
||||
);
|
||||
|
||||
|
@ -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),
|
||||
);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user