summaryrefslogtreecommitdiff
path: root/src/openocd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/openocd.c')
-rw-r--r--src/openocd.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/openocd.c b/src/openocd.c
index 7347cad8..5ce01e82 100644
--- a/src/openocd.c
+++ b/src/openocd.c
@@ -42,7 +42,6 @@
#include <server/server.h>
#include <server/gdb_server.h>
-#include <server/httpd.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
@@ -337,9 +336,6 @@ int openocd_main(int argc, char *argv[])
if (ret != ERROR_OK)
return EXIT_FAILURE;
- if (httpd_start(cmd_ctx) != ERROR_OK)
- return EXIT_FAILURE;
-
ret = server_init(cmd_ctx);
if (ERROR_OK != ret)
return EXIT_FAILURE;
@@ -357,8 +353,6 @@ int openocd_main(int argc, char *argv[])
server_quit();
- httpd_stop();
-
unregister_all_commands(cmd_ctx, NULL);
/* free commandline interface */