]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
modules/redis: missing header
authorMarek Vavruša <marek.vavrusa@nic.cz>
Wed, 10 Jun 2015 23:11:32 +0000 (01:11 +0200)
committerMarek Vavruša <marek.vavrusa@nic.cz>
Wed, 10 Jun 2015 23:13:15 +0000 (01:13 +0200)
modules/redis/redis.h [new file with mode: 0644]

diff --git a/modules/redis/redis.h b/modules/redis/redis.h
new file mode 100644 (file)
index 0000000..9570bc7
--- /dev/null
@@ -0,0 +1,35 @@
+/*  Copyright (C) 2015 CZ.NIC, z.s.p.o. <knot-dns@labs.nic.cz>
+
+    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 3 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, see <http://www.gnu.org/licenses/>.
+ */
+
+#pragma once
+
+#include <hiredis/hiredis.h>
+#include "lib/generic/array.h"
+
+/** Redis buffer size */
+#define REDIS_BUFSIZE (512 * 1024)
+#define REDIS_PORT 6379
+
+typedef array_t(redisReply *) redis_freelist_t;
+
+/** @internal Redis client */
+struct redis_cli {
+       redisContext *handle;
+       redis_freelist_t freelist;
+       char *addr;
+       unsigned database;
+       unsigned port;
+};