mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-30 07:34:12 +08:00
tcp: Report mss_clamp with TCP_MAXSEG option in repair mode
The mss_clamp is the only connection-time negotiated option which cannot be obtained from the user space. Make the TCP_MAXSEG sockopt report one in the repair mode. Signed-off-by: Pavel Emelyanov <xemul@openvz.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
c0e88ff0f2
commit
5e6a3ce657
@ -2659,6 +2659,8 @@ static int do_tcp_getsockopt(struct sock *sk, int level,
|
|||||||
val = tp->mss_cache;
|
val = tp->mss_cache;
|
||||||
if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
|
if (!val && ((1 << sk->sk_state) & (TCPF_CLOSE | TCPF_LISTEN)))
|
||||||
val = tp->rx_opt.user_mss;
|
val = tp->rx_opt.user_mss;
|
||||||
|
if (tp->repair)
|
||||||
|
val = tp->rx_opt.mss_clamp;
|
||||||
break;
|
break;
|
||||||
case TCP_NODELAY:
|
case TCP_NODELAY:
|
||||||
val = !!(tp->nonagle&TCP_NAGLE_OFF);
|
val = !!(tp->nonagle&TCP_NAGLE_OFF);
|
||||||
|
Loading…
Reference in New Issue
Block a user