]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Add missing lookup_t.h
authorAmos Jeffries <squid3@treenet.co.nz>
Sun, 23 Aug 2009 06:36:04 +0000 (18:36 +1200)
committerAmos Jeffries <squid3@treenet.co.nz>
Sun, 23 Aug 2009 06:36:04 +0000 (18:36 +1200)
src/lookup_t.h [new file with mode: 0644]

diff --git a/src/lookup_t.h b/src/lookup_t.h
new file mode 100644 (file)
index 0000000..31b3e27
--- /dev/null
@@ -0,0 +1,12 @@
+#ifndef _SQUID_LOOKUP_T_H
+#define _SQUID_LOOKUP_T_H
+
+typedef enum {
+    LOOKUP_NONE,
+    LOOKUP_HIT,
+    LOOKUP_MISS
+} lookup_t;
+
+extern const char *lookup_t_str[];
+
+#endif /* _SQUID_LOOKUP_T_H */