• M
    There are a number of instances throughout the code where the constant 28 is · 0d3ae34d
    Matt Caswell 提交于
    used with no explanation. Some of this was introduced as part of RT#1929. The
    value 28 is the length of the IP header (20 bytes) plus the UDP header (8
    bytes). However use of this constant is incorrect because there may be
    instances where a different value is needed, e.g. an IPv4 header is 20 bytes
    but an IPv6 header is 40. Similarly you may not be using UDP (e.g. SCTP).
    This commit introduces a new BIO_CTRL that provides the value to be used for
    this mtu "overhead". It will be used by subsequent commits.
    Reviewed-by: NTim Hudson <tjh@openssl.org>
    0d3ae34d
bss_dgram.c 49.0 KB