aboutsummaryrefslogtreecommitdiffstats
path: root/src/queue.h
diff options
context:
space:
mode:
authorJosé Bollo <jose.bollo@iot.bzh>2019-02-05 16:14:10 +0100
committerJose Bollo <jose.bollo@iot.bzh>2019-04-29 17:29:38 +0200
commitfac09aebb3bb0daed47ea510d3b0374d7350650a (patch)
treeab47ec7fe43bf65d80fd3f5fea3c60cbe0760f3c /src/queue.h
parent6a244fcacf49034b93a7fd2f3988f71d9ffd5fd2 (diff)
Rework of many things
Change-Id: Iadeba6f0602f7be017244c2602fae2bbe2abf74e Signed-off-by: José Bollo <jose.bollo@iot.bzh>
Diffstat (limited to 'src/queue.h')
-rw-r--r--src/queue.h13
1 files changed, 3 insertions, 10 deletions
diff --git a/src/queue.h b/src/queue.h
index a9fc454..7efc1f8 100644
--- a/src/queue.h
+++ b/src/queue.h
@@ -19,21 +19,14 @@
extern
int
queue_drop(
- const char *client,
- const char *session,
- const char *user,
- const char *permission
+ const data_key_t *key
);
extern
int
queue_set(
- const char *client,
- const char *session,
- const char *user,
- const char *permission,
- const char *value,
- time_t expire
+ const data_key_t *key,
+ const data_value_t *value
);
extern