diff options
Diffstat (limited to 'src/cache/query.c')
-rw-r--r-- | src/cache/query.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/cache/query.c b/src/cache/query.c new file mode 100644 index 0000000..ad606e6 --- /dev/null +++ b/src/cache/query.c @@ -0,0 +1,16 @@ +/* ISC license. */ + +#include "shibari-cache-internal.h" + +void query_fail (query *q) +{ +} + +void query_success (query *q) +{ +} + +int query_new (uint8_t source, uint16_t i, char const *ip, uint16_t port, char const *s, uint16_t len) +{ + return 1 ; +} |