summaryrefslogtreecommitdiffstats
path: root/rubbos/app/httpd-2.0.64/srclib/apr/test/testsockopt.c
diff options
context:
space:
mode:
authorhongbotian <hongbo.tianhongbo@huawei.com>2015-11-30 03:10:21 -0500
committerhongbotian <hongbo.tianhongbo@huawei.com>2015-11-30 03:10:21 -0500
commitc0b7206652b2852bc574694e7ba07ba1c2acdc00 (patch)
tree5cb95cb0e19e03610525903df46279df2c3b7eb1 /rubbos/app/httpd-2.0.64/srclib/apr/test/testsockopt.c
parentb6d3d6e668b793220f2d3af1bc3e828553dc3fe6 (diff)
delete app
Change-Id: Id4c572809969ebe89e946e88063eaed262cff3f2 Signed-off-by: hongbotian <hongbo.tianhongbo@huawei.com>
Diffstat (limited to 'rubbos/app/httpd-2.0.64/srclib/apr/test/testsockopt.c')
-rw-r--r--rubbos/app/httpd-2.0.64/srclib/apr/test/testsockopt.c137
1 files changed, 0 insertions, 137 deletions
diff --git a/rubbos/app/httpd-2.0.64/srclib/apr/test/testsockopt.c b/rubbos/app/httpd-2.0.64/srclib/apr/test/testsockopt.c
deleted file mode 100644
index 40cce1f6..00000000
--- a/rubbos/app/httpd-2.0.64/srclib/apr/test/testsockopt.c
+++ /dev/null
@@ -1,137 +0,0 @@
-/* Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include "apr_network_io.h"
-#include "apr_errno.h"
-#include "apr_general.h"
-#include "apr_lib.h"
-#include "test_apr.h"
-
-static apr_socket_t *sock = NULL;
-
-static void create_socket(CuTest *tc)
-{
- apr_status_t rv;
-
- rv = apr_socket_create(&sock, APR_INET, SOCK_STREAM, p);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertPtrNotNull(tc, sock);
-}
-
-static void set_keepalive(CuTest *tc)
-{
- apr_status_t rv;
- apr_int32_t ck;
-
- rv = apr_socket_opt_set(sock, APR_SO_KEEPALIVE, 1);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
-
- rv = apr_socket_opt_get(sock, APR_SO_KEEPALIVE, &ck);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertIntEquals(tc, 1, ck);
-}
-
-static void set_debug(CuTest *tc)
-{
- apr_status_t rv1, rv2;
- apr_int32_t ck;
-
- /* On some platforms APR_SO_DEBUG can only be set as root; just test
- * for get/set consistency of this option. */
- rv1 = apr_socket_opt_set(sock, APR_SO_DEBUG, 1);
- rv2 = apr_socket_opt_get(sock, APR_SO_DEBUG, &ck);
- apr_assert_success(tc, "get SO_DEBUG option", rv2);
- if (APR_STATUS_IS_SUCCESS(rv1)) {
- CuAssertIntEquals(tc, 1, ck);
- } else {
- CuAssertIntEquals(tc, 0, ck);
- }
-}
-
-static void remove_keepalive(CuTest *tc)
-{
- apr_status_t rv;
- apr_int32_t ck;
-
- rv = apr_socket_opt_get(sock, APR_SO_KEEPALIVE, &ck);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertIntEquals(tc, 1, ck);
-
- rv = apr_socket_opt_set(sock, APR_SO_KEEPALIVE, 0);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
-
- rv = apr_socket_opt_get(sock, APR_SO_KEEPALIVE, &ck);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertIntEquals(tc, 0, ck);
-}
-
-static void corkable(CuTest *tc)
-{
-#if !APR_HAVE_CORKABLE_TCP
- CuNotImpl(tc, "TCP isn't corkable");
-#else
- apr_status_t rv;
- apr_int32_t ck;
-
- rv = apr_socket_opt_set(sock, APR_TCP_NODELAY, 1);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
-
- rv = apr_socket_opt_get(sock, APR_TCP_NODELAY, &ck);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertIntEquals(tc, 1, ck);
-
- rv = apr_socket_opt_set(sock, APR_TCP_NOPUSH, 1);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
-
- rv = apr_socket_opt_get(sock, APR_TCP_NOPUSH, &ck);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertIntEquals(tc, 1, ck);
-
- rv = apr_socket_opt_get(sock, APR_TCP_NODELAY, &ck);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertIntEquals(tc, 0, ck);
-
- rv = apr_socket_opt_set(sock, APR_TCP_NOPUSH, 0);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
-
- rv = apr_socket_opt_get(sock, APR_TCP_NODELAY, &ck);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
- CuAssertIntEquals(tc, 1, ck);
-#endif
-}
-
-static void close_socket(CuTest *tc)
-{
- apr_status_t rv;
-
- rv = apr_socket_close(sock);
- CuAssertIntEquals(tc, APR_SUCCESS, rv);
-}
-
-CuSuite *testsockopt(void)
-{
- CuSuite *suite = CuSuiteNew("Socket Options");
-
- SUITE_ADD_TEST(suite, create_socket);
- SUITE_ADD_TEST(suite, set_keepalive);
- SUITE_ADD_TEST(suite, set_debug);
- SUITE_ADD_TEST(suite, remove_keepalive);
- SUITE_ADD_TEST(suite, corkable);
- SUITE_ADD_TEST(suite, close_socket);
-
- return suite;
-}
-