summaryrefslogtreecommitdiffstats
path: root/src/include/krb5/proto.h
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1989-12-01 10:11:49 +0000
committerJohn Kohl <jtkohl@mit.edu>1989-12-01 10:11:49 +0000
commit23ec9b40232dc6142152a9e6d5d70e04d08fe944 (patch)
treebbd644e2b7d808bda25c410b63b128d0ddd058f3 /src/include/krb5/proto.h
parent79e732990deab8b5c4ede3faf3e3a1f099f97469 (diff)
downloadkrb5-23ec9b40232dc6142152a9e6d5d70e04d08fe944.tar.gz
krb5-23ec9b40232dc6142152a9e6d5d70e04d08fe944.tar.xz
krb5-23ec9b40232dc6142152a9e6d5d70e04d08fe944.zip
*** empty log message ***
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@36 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5/proto.h')
-rw-r--r--src/include/krb5/proto.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/include/krb5/proto.h b/src/include/krb5/proto.h
new file mode 100644
index 0000000000..8810efd217
--- /dev/null
+++ b/src/include/krb5/proto.h
@@ -0,0 +1,33 @@
+/*
+ * $Source$
+ * $Author$
+ * $Id$
+ *
+ * Copyright 1989 by the Massachusetts Institute of Technology.
+ *
+ * For copying and distribution information, please see the file
+ * <krb5/mit-copyright.h>.
+ *
+ * Protocol message definitions.
+ */
+
+#include <krb5/copyright.h>
+
+#ifndef __KRB5_PROTO__
+#define __KRB5_PROTO__
+
+/* Protocol version number */
+#define KRB5_PVNO 5
+
+/* Message types */
+
+#define KRB_AS_REQ 2 /* Req for initial authentication */
+#define KRB_AS_REP 4 /* Response to KRB_AS_REQ request */
+#define KRB_AP_REQ 6 /* application request to server */
+#define KRB_AP_REP 10 /* Response to KRB_AP_REQ_MUTUAL */
+#define KRB_PRIV 12 /* Private application message */
+#define KRB_SAFE 14 /* Safe application message */
+#define KRB_TGS_REP 16 /* Response to KRB_TGS_REQ request */
+#define KRB_ERROR 32 /* Error response */
+
+#endif /* __KRB5_PROTO__ */