summaryrefslogtreecommitdiff
path: root/handler.h
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2013-09-24 10:47:47 +0200
committerFelix Fietkau <nbd@openwrt.org>2013-10-22 14:10:33 +0200
commitf16a15c39c872c5f42eb554deb4d956264c0c823 (patch)
tree86227c8d61416ef5847d093a887ee9a7d3d383f9 /handler.h
parente9f8c9c537c3f8fec3edbe2896bad2cc8647c487 (diff)
downloadnetifd-f16a15c39c872c5f42eb554deb4d956264c0c823.tar.gz
proto-shell: move script handler dump code to handler.c
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
Diffstat (limited to 'handler.h')
-rw-r--r--handler.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/handler.h b/handler.h
new file mode 100644
index 0000000..02438f2
--- /dev/null
+++ b/handler.h
@@ -0,0 +1,24 @@
+/*
+ * netifd - network interface daemon
+ * Copyright (C) 2012-2013 Felix Fietkau <nbd@openwrt.org>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License version 2
+ * as published by the Free Software Foundation
+ *
+ * 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.
+ */
+#ifndef __NETIFD_HANDLER_H
+#define __NETIFD_HANDLER_H
+
+#include <libubox/blobmsg_json.h>
+
+typedef void (*script_dump_cb)(const char *name, json_object *obj);
+
+int netifd_open_subdir(const char *name);
+void netifd_init_script_handlers(int dir_fd, script_dump_cb cb);
+
+#endif