From b49fd5a475b1096f150bb4f8cee19287c0ba31fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nils=20O=2E=20Sel=C3=A5sdal?= Date: Wed, 19 Feb 2014 00:40:13 +0100 Subject: [PATCH] Fix orders of members in UCKeepConfig --- include/ucore/fd_utils.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/ucore/fd_utils.h b/include/ucore/fd_utils.h index b696e3a..bdb31f4 100644 --- a/include/ucore/fd_utils.h +++ b/include/ucore/fd_utils.h @@ -35,14 +35,14 @@ int uc_set_tcp_keepalive(int sockfd); struct UCKeepConfig { - /** The maximum number of keepalive probes TCP should - * send before dropping the connection. (TCP_KEEPCNT socket option) - */ - int keepcnt; /** The time (in seconds) the connection needs to remain * idle before TCP starts sending keepalive probes (TCP_KEEPIDLE socket option) */ int keepidle; + /** The maximum number of keepalive probes TCP should + * send before dropping the connection. (TCP_KEEPCNT socket option) + */ + int keepcnt; /** The time (in seconds) between individual keepalive probes. * (TCP_KEEPINTVL socket option) */