From a6f95ed59e2bc5a5d732738be7046e1e8422fb26 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Fri, 19 Jun 2020 23:26:25 +0200 Subject: Revert "test_echo_tcp_socket_options.c: add tests for TCP_INFO" This reverts commit a37c0175492fb1b35257b785c71dea4e4f6d4750. This got merged automatically by gitlab without review. Signed-off-by: Stefan Metzmacher --- tests/test_echo_tcp_socket_options.c | 50 ------------------------------------ 1 file changed, 50 deletions(-) (limited to 'tests/test_echo_tcp_socket_options.c') diff --git a/tests/test_echo_tcp_socket_options.c b/tests/test_echo_tcp_socket_options.c index 5e5661d..dfa46fe 100644 --- a/tests/test_echo_tcp_socket_options.c +++ b/tests/test_echo_tcp_socket_options.c @@ -11,25 +11,12 @@ #include #include #include -#ifdef HAVE_NETINET_TCP_FSM_H -#include -#endif #include #include #include #include #include -#ifdef HAVE_NETINET_TCP_FSM_H -/* This is FreeBSD */ -# define __TCP_ESTABLISHED TCPS_ESTABLISHED -# define __TCP_CLOSE TCPS_CLOSED -#else -/* This is Linux */ -# define __TCP_ESTABLISHED TCP_ESTABLISHED -# define __TCP_CLOSE TCP_CLOSE -#endif - #ifndef ZERO_STRUCT #define ZERO_STRUCT(x) memset((char *)&(x), 0, sizeof(x)) #endif @@ -313,9 +300,6 @@ static void test_sockopt_tcp(void **state) .sa_socklen = sizeof(struct sockaddr_in), }; int opt = -1; -#ifdef TCP_INFO - struct tcp_info info; -#endif socklen_t optlen = sizeof(int); int rc; @@ -334,27 +318,9 @@ static void test_sockopt_tcp(void **state) &addr.sa.in.sin_addr); assert_int_equal(rc, 1); -#ifdef TCP_INFO - ZERO_STRUCT(info); - optlen = sizeof(info); - rc = getsockopt(s, IPPROTO_TCP, TCP_INFO, &info, &optlen); - assert_return_code(rc, errno); - assert_int_equal(optlen, sizeof(info)); - printf("info.tcpi_state=0x%x\n", info.tcpi_state); - printf("info.tcpi_rto=%u\n", info.tcpi_rto); - printf("info.tcpi_rtt=%u\n", info.tcpi_rtt); - printf("info.tcpi_rttvar=%u\n", info.tcpi_rttvar); - assert_int_equal(info.tcpi_state, __TCP_CLOSE); - assert_int_not_equal(info.tcpi_rto, 0); - assert_int_equal(info.tcpi_rtt, 0); - assert_int_not_equal(info.tcpi_rttvar, 0); -#endif /* TCP_INFO */ - rc = connect(s, &addr.sa.s, addr.sa_socklen); assert_int_equal(rc, 0); - opt = -1; - optlen = sizeof(int); rc = getsockopt(s, IPPROTO_TCP, TCP_NODELAY, &opt, &optlen); assert_return_code(rc, errno); assert_int_equal(opt, 0); @@ -370,22 +336,6 @@ static void test_sockopt_tcp(void **state) assert_return_code(rc, errno); assert_int_equal(opt, 1); -#ifdef TCP_INFO - ZERO_STRUCT(info); - optlen = sizeof(info); - rc = getsockopt(s, IPPROTO_TCP, TCP_INFO, &info, &optlen); - assert_return_code(rc, errno); - assert_int_equal(optlen, sizeof(info)); - printf("info.tcpi_state=0x%x\n", info.tcpi_state); - printf("info.tcpi_rto=%u\n", info.tcpi_rto); - printf("info.tcpi_rtt=%u\n", info.tcpi_rtt); - printf("info.tcpi_rttvar=%u\n", info.tcpi_rttvar); - assert_int_equal(info.tcpi_state, __TCP_ESTABLISHED); - assert_int_not_equal(info.tcpi_rto, 0); - assert_int_not_equal(info.tcpi_rtt, 0); - assert_int_not_equal(info.tcpi_rttvar, 0); -#endif /* TCP_INFO */ - close(s); } -- cgit