netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2] ipv4: Add option to get TCP_FASTOPEN to getsockopt()
@ 2014-04-15 12:35 Kenjiro Nakayama
  2014-04-15 13:52 ` Eric Dumazet
  2014-04-15 13:57 ` Neal Cardwell
  0 siblings, 2 replies; 3+ messages in thread
From: Kenjiro Nakayama @ 2014-04-15 12:35 UTC (permalink / raw)
  To: LKML; +Cc: Neal Cardwell, Netdev, Yuchung Cheng, Eric Dumazet

Hi,

TCP_FASTOPEN option can be set via setsockopt(), but the value cannot be
gotten via getsockopt(). This patch adds the option to getsockopt().

Sighned-off-by: Kenjiro Nakayama <nakayamakenjiro@gmail.com>

 	Add option to get TCP_FASTOPEN to getsockopt()
---
 net/ipv4/tcp.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c
index 4bd6d52..86186f4 100644
--- a/net/ipv4/tcp.c
+++ b/net/ipv4/tcp.c
@@ -2916,6 +2916,13 @@ static int do_tcp_getsockopt(struct sock *sk, int level,
 	case TCP_USER_TIMEOUT:
 		val = jiffies_to_msecs(icsk->icsk_user_timeout);
 		break;
+
+	case TCP_FASTOPEN:
+		val = icsk->icsk_accept_queue.fastopenq ?
+		    icsk->icsk_accept_queue.fastopenq->max_qlen
+		    : sysctl_tcp_fastopen;
+		break;
+
 	case TCP_TIMESTAMP:
 		val = tcp_time_stamp + tp->tsoffset;
 		break;
--
1.9.0

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-04-15 13:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-15 12:35 [PATCH v2] ipv4: Add option to get TCP_FASTOPEN to getsockopt() Kenjiro Nakayama
2014-04-15 13:52 ` Eric Dumazet
2014-04-15 13:57 ` Neal Cardwell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).