summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/mghttpd01/test-http-client.h
diff options
context:
space:
mode:
authorVijay Kumar Banerjee <vijay@rtems.org>2021-02-26 16:19:20 -0700
committerVijay Kumar Banerjee <vijay@rtems.org>2021-04-07 16:15:39 -0600
commitdf6d765c3aa13d7f83b602127cb9aa97c592c7cf (patch)
tree48b19f766610da7ca99bd40920f816fb1a4a0215 /testsuites/libtests/mghttpd01/test-http-client.h
parentspec: Remove residue bsps spec files (diff)
downloadrtems-df6d765c3aa13d7f83b602127cb9aa97c592c7cf.tar.bz2
testsuites: Remove all legacy networking tests
Update #3850
Diffstat (limited to 'testsuites/libtests/mghttpd01/test-http-client.h')
-rw-r--r--testsuites/libtests/mghttpd01/test-http-client.h69
1 files changed, 0 insertions, 69 deletions
diff --git a/testsuites/libtests/mghttpd01/test-http-client.h b/testsuites/libtests/mghttpd01/test-http-client.h
deleted file mode 100644
index 811c790110..0000000000
--- a/testsuites/libtests/mghttpd01/test-http-client.h
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * Copyright (c) 2012 embedded brains GmbH. All rights reserved.
- *
- * embedded brains GmbH
- * Obere Lagerstr. 30
- * 82178 Puchheim
- * Germany
- * <rtems@embedded-brains.de>
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#ifndef TEST_WEB_CLIENT_H
-#define TEST_WEB_CLIENT_H
-
-#include <stdint.h>
-#include <stdbool.h>
-#include <stdio.h>
-
-#ifdef __cplusplus
-extern "C" {
-#endif /* __cplusplus */
-
-typedef struct
-{
- int socket;
- FILE *fd;
-}
-httpc_context;
-
-void httpc_init_context(
- httpc_context *ctx
-);
-
-bool httpc_open_connection(
- httpc_context *ctx,
- const char *targethost,
- int targetport
-);
-
-bool httpc_close_connection(
- httpc_context *ctx
-);
-
-bool httpc_send_request(
- const httpc_context *ctx,
- const char *request,
- char *response,
- int responsesize
-);
-
-bool httpc_ws_open_connection(
- const httpc_context *ctx
-);
-
-bool httpc_ws_send_request(
- const httpc_context *ctx,
- const char *request,
- char *response,
- int responsesize
-);
-
-#ifdef __cplusplus
-}
-#endif /* __cplusplus */
-
-#endif /* TEST_WEB_CLIENT_H */