summaryrefslogtreecommitdiff
path: root/src/server/httpd.h
diff options
context:
space:
mode:
authorZachary T Welch <zw@superlucidity.net>2009-11-24 10:58:32 -0800
committerZachary T Welch <zw@superlucidity.net>2009-11-24 21:37:37 -0800
commit8f5ff3ddcf0ab11b0ec6fc9215144154fb0519f9 (patch)
tree10e2c2c19ab0aad9cdaf2e6bd551d1f666f2594b /src/server/httpd.h
parent17a9dea53a71e9d7e241262725f3dd707b620d37 (diff)
downloadopenocd+libswd-8f5ff3ddcf0ab11b0ec6fc9215144154fb0519f9.tar.gz
openocd+libswd-8f5ff3ddcf0ab11b0ec6fc9215144154fb0519f9.tar.bz2
openocd+libswd-8f5ff3ddcf0ab11b0ec6fc9215144154fb0519f9.tar.xz
openocd+libswd-8f5ff3ddcf0ab11b0ec6fc9215144154fb0519f9.zip
httpd: use register_commands()
Updates httpd_start() to use register_commands() for 'readform' and 'writeform' commands. Adds server/httpd.h to export the new signatures for this function (and httpd_stop), which allows removing the obsoleted declarations inside openocd.c.
Diffstat (limited to 'src/server/httpd.h')
-rw-r--r--src/server/httpd.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/src/server/httpd.h b/src/server/httpd.h
new file mode 100644
index 00000000..0502deb1
--- /dev/null
+++ b/src/server/httpd.h
@@ -0,0 +1,28 @@
+/***************************************************************************
+ * Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> *
+ * *
+ * This program is free software; you can redistribute it and/or modify *
+ * it under the terms of the GNU General Public License as published by *
+ * the Free Software Foundation; either version 2 of the License, or *
+ * (at your option) any later version. *
+ * *
+ * This program is distributed in the hope that it will be useful, *
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of *
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
+ * GNU General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU General Public License *
+ * along with this program; if not, write to the *
+ * Free Software Foundation, Inc., *
+ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
+ ***************************************************************************/
+
+#ifndef OPENOCD_SERVER_HTTPD_H
+#define OPENOCD_SERVER_HTTPD_H
+
+struct command_context;
+
+int httpd_start(struct command_context *cmd_ctx);
+void httpd_stop(void);
+
+#endif // OPENOCD_SERVER_HTTPD_H