*** empty log message ***
authorJohn Kohl <jtkohl@mit.edu>
Fri, 4 May 1990 10:25:56 +0000 (10:25 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Fri, 4 May 1990 10:25:56 +0000 (10:25 +0000)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@716 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/rcache/rc_io.h [new file with mode: 0644]

diff --git a/src/lib/krb5/rcache/rc_io.h b/src/lib/krb5/rcache/rc_io.h
new file mode 100644 (file)
index 0000000..82d3be8
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+Copyright 1990, Daniel J. Bernstein. All rights reserved.
+
+Please address any questions or comments to the author at brnstnd@acf10.nyu.edu.
+*/
+
+#ifndef KRB5_RC_IO_H
+#define KRB5_RC_IO_H
+#include "krb5/krb5.h"
+
+typedef struct krb5_rc_iostuff
+ {
+  int fd;
+  int mark; /* on newer systems, should be pos_t */
+  char *fn;
+ }
+krb5_rc_iostuff;
+
+/* first argument is always iostuff for result file */
+
+krb5_error_code krb5_rc_io_creat PROTOTYPE((krb5_rc_iostuff *,char **));
+krb5_error_code krb5_rc_io_open PROTOTYPE((krb5_rc_iostuff *,char *));
+krb5_error_code krb5_rc_io_move PROTOTYPE((krb5_rc_iostuff *,krb5_rc_iostuff *));
+krb5_error_code krb5_rc_io_write PROTOTYPE((krb5_rc_iostuff *,krb5_pointer,int));
+krb5_error_code krb5_rc_io_read PROTOTYPE((krb5_rc_iostuff *,krb5_pointer,int));
+krb5_error_code krb5_rc_io_close PROTOTYPE((krb5_rc_iostuff *));
+krb5_error_code krb5_rc_io_destroy PROTOTYPE((krb5_rc_iostuff *));
+krb5_error_code krb5_rc_io_mark PROTOTYPE((krb5_rc_iostuff *));
+krb5_error_code krb5_rc_io_unmark PROTOTYPE((krb5_rc_iostuff *));
+
+#endif