summaryrefslogtreecommitdiff
path: root/ubus-session.h
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2013-01-25 15:35:10 +0100
committerJo-Philipp Wich <jow@openwrt.org>2013-01-25 17:39:48 +0100
commiteb098bcfb6b8ee61cb6ce164aea7f847ffa30dcb (patch)
tree42ffdd42184762d705f92bcb1a1e253c879e7ee7 /ubus-session.h
parent7dea5d994ea8c1b753b734edb27fdaf7c948c326 (diff)
ubus: remove session api from plugin and check access via ubus call to let other services provide the session api
Diffstat (limited to 'ubus-session.h')
-rw-r--r--ubus-session.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/ubus-session.h b/ubus-session.h
deleted file mode 100644
index 43d953f..0000000
--- a/ubus-session.h
+++ /dev/null
@@ -1,56 +0,0 @@
-/*
- * uhttpd - Tiny single-threaded httpd
- *
- * Copyright (C) 2010-2013 Jo-Philipp Wich <xm@subsignal.org>
- * Copyright (C) 2013 Felix Fietkau <nbd@openwrt.org>
- *
- * Permission to use, copy, modify, and/or distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- */
-
-#ifndef __UHTTPD_UBUS_H
-#define __UHTTPD_UBUS_H
-
-#include <libubox/avl.h>
-#include <libubox/blobmsg_json.h>
-
-#define UBUS_SID_LEN 32
-#define UBUS_DEFAULT_SESSION_TIMEOUT 300
-
-struct uh_ubus_session {
- struct avl_node avl;
- char id[UBUS_SID_LEN + 1];
-
- struct uloop_timeout t;
- struct avl_tree data;
- struct avl_tree acls;
-
- int timeout;
-};
-
-struct uh_ubus_session_data {
- struct avl_node avl;
- struct blob_attr attr[];
-};
-
-struct uh_ubus_session_acl {
- struct avl_node avl;
- const char *object;
- const char *function;
- int sort_len;
-};
-
-int ubus_session_api_init(struct ubus_context *ctx);
-struct uh_ubus_session *uh_ubus_session_get(const char *id);
-bool uh_ubus_session_acl_allowed(struct uh_ubus_session *ses, const char *obj, const char *fun);
-
-#endif