mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
Fix bug in r278331: unlike some other options MaxRecvDataSegmentLength
is not negotiated as minimum, but only reported by sides to each other. MFC after: 1 week
This commit is contained in:
parent
f49cc1b5c0
commit
f249b52d9a
1 changed files with 1 additions and 1 deletions
|
|
@ -557,7 +557,7 @@ login_negotiate_key(struct pdu *request, const char *name,
|
|||
tmp = conn->conn_data_segment_limit;
|
||||
}
|
||||
conn->conn_max_data_segment_length = tmp;
|
||||
keys_add_int(response_keys, name, tmp);
|
||||
keys_add_int(response_keys, name, conn->conn_data_segment_limit);
|
||||
} else if (strcmp(name, "MaxBurstLength") == 0) {
|
||||
tmp = strtoul(value, NULL, 10);
|
||||
if (tmp <= 0) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue