From 1d17c89ac8d0479e43abd0536aeb7f2644e6930d Mon Sep 17 00:00:00 2001 From: Amos Jeffries Date: Sun, 23 Aug 2009 18:36:04 +1200 Subject: [PATCH] Add missing lookup_t.h --- src/lookup_t.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/lookup_t.h diff --git a/src/lookup_t.h b/src/lookup_t.h new file mode 100644 index 0000000000..31b3e27d2f --- /dev/null +++ b/src/lookup_t.h @@ -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 */ -- 2.47.3