]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
SourceLayout: add missing CredentialState.h
authorAmos Jeffries <squid3@treenet.co.nz>
Tue, 12 Apr 2011 06:01:32 +0000 (00:01 -0600)
committerAmos Jeffries <squid3@treenet.co.nz>
Tue, 12 Apr 2011 06:01:32 +0000 (00:01 -0600)
src/auth/CredentialState.h [new file with mode: 0644]

diff --git a/src/auth/CredentialState.h b/src/auth/CredentialState.h
new file mode 100644 (file)
index 0000000..756b3f0
--- /dev/null
@@ -0,0 +1,18 @@
+#ifndef _SQUID_AUTH_CREDENTIALSTATE_H
+#define _SQUID_AUTH_CREDENTIALSTATE_H
+
+namespace Auth {
+
+typedef enum {
+    Unchecked,
+    Ok,
+    Pending,
+    Handshake,
+    Failed
+} CredentialState;
+
+extern const char *CredentialState_str[];
+
+} // namespace Auth
+
+#endif /* _SQUID_AUTH_CREDENTIALSTATE_H */