* krb.h: Add prototypes for tf_init(), tf_get_pname(),
authorEzra Peisach <epeisach@mit.edu>
Wed, 2 Aug 2000 21:06:17 +0000 (21:06 +0000)
committerEzra Peisach <epeisach@mit.edu>
Wed, 2 Aug 2000 21:06:17 +0000 (21:06 +0000)
tf_get_pinst(), tf_get_cred() and tf_close() which are all used by
clients.

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@12600 dc483132-0cff-0310-8789-dd5450dbe970

src/include/kerberosIV/ChangeLog
src/include/kerberosIV/krb.h

index c009ccc5351efbcb5f2a0e6223217a9334a5c506..ba6dc2c0a3edc208b0d2e3817ca4f7a489ebdfe5 100644 (file)
@@ -1,3 +1,9 @@
+2000-08-02  Ezra Peisach  <epeisach@mit.edu>
+
+       * krb.h: Add prototypes for tf_init(), tf_get_pname(),
+       tf_get_pinst(), tf_get_cred() and tf_close() which are all used by
+       clients.
+
 2000-07-21  Ezra Peisach  <epeisach@mit.edu>
 
        * krb.h: For get_pw_tkt() and unix_time_gmt_unixsec() add required
index 01ec45e5774d4e9292170cc5e6d1339425ca0da6..66d9f4cb55435e64af2669c55020f979efb1daf9 100644 (file)
@@ -640,12 +640,24 @@ KRB5_DLLIMP int KRB5_CALLCONV krb_save_credentials
 /* send_to_kdc.c */
 int send_to_kdc
        PROTOTYPE((KTEXT pkt, KTEXT rpkt, char *realm));
+
 /* tkt_string.c */
 char * tkt_string
        PROTOTYPE((void));
 void krb_set_tkt_string
        PROTOTYPE((char *));
 
+/* tf_util.c */
+KRB5_DLLIMP int KRB5_CALLCONV tf_init PROTOTYPE((char *tf_name, int rw));
+
+KRB5_DLLIMP int KRB5_CALLCONV tf_get_pname PROTOTYPE((char *p));
+
+KRB5_DLLIMP int KRB5_CALLCONV tf_get_pinst PROTOTYPE((char *p));
+
+KRB5_DLLIMP int KRB5_CALLCONV tf_get_cred PROTOTYPE((CREDENTIALS *c));
+
+KRB5_DLLIMP void KRB5_CALLCONV tf_close PROTOTYPE((void));
+
 /* unix_time.c */
 KRB5_DLLIMP unsigned KRB4_32 KRB5_CALLCONV unix_time_gmt_unixsec 
         PROTOTYPE((unsigned KRB4_32 *));