From: Amos Jeffries Date: Sun, 23 Aug 2009 06:36:04 +0000 (+1200) Subject: Add missing lookup_t.h X-Git-Tag: SQUID_3_2_0_1~766 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1d17c89ac8d0479e43abd0536aeb7f2644e6930d;p=thirdparty%2Fsquid.git Add missing 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 */