summaryrefslogtreecommitdiffstats
path: root/src/include/krb5
diff options
context:
space:
mode:
authorChris Provenzano <proven@mit.edu>1995-03-27 14:39:33 +0000
committerChris Provenzano <proven@mit.edu>1995-03-27 14:39:33 +0000
commit2899849204409c240ed83f4a45b680d184d35e24 (patch)
treece4e2c128d7471cd2f09f77de88b12d1ccc6684c /src/include/krb5
parentbab692ccf25c4c37c024c52de1bf0492107aba41 (diff)
downloadkrb5-2899849204409c240ed83f4a45b680d184d35e24.tar.gz
krb5-2899849204409c240ed83f4a45b680d184d35e24.tar.xz
krb5-2899849204409c240ed83f4a45b680d184d35e24.zip
* func-proto.h (krb5_rd_req(), krb5_rd_req_decode(), krb5_mk_rep(),
krb5_recvauth(), and krb5_compat_recvauth(). Added a krb5_auth_context argument and eliminated many of the other arguments because they are included in the krb5_auth_context structure. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5259 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include/krb5')
-rw-r--r--src/include/krb5/ChangeLog9
-rw-r--r--src/include/krb5/func-proto.h57
2 files changed, 31 insertions, 35 deletions
diff --git a/src/include/krb5/ChangeLog b/src/include/krb5/ChangeLog
index bb005272c6..5f3fb554bc 100644
--- a/src/include/krb5/ChangeLog
+++ b/src/include/krb5/ChangeLog
@@ -1,3 +1,12 @@
+
+Mon Mar 27 09:33:10 1995 Chris Provenzano (proven@mit.edu)
+
+ * func-proto.h (krb5_rd_req(), krb5_rd_req_decode(), krb5_mk_rep(),
+ krb5_recvauth(), and krb5_compat_recvauth(). Added a
+ krb5_auth_context argument and eliminated many of the
+ other arguments because they are included in the
+ krb5_auth_context structure.
+
Fri Mar 24 14:15:51 1995 <tytso@rsx-11.mit.edu>
* adm_defs.h (ADM5_DEFAULT_PORT): Add definition of default
diff --git a/src/include/krb5/func-proto.h b/src/include/krb5/func-proto.h
index f890cd4031..d3b1e17446 100644
--- a/src/include/krb5/func-proto.h
+++ b/src/include/krb5/func-proto.h
@@ -106,16 +106,9 @@ krb5_error_code INTERFACE krb5_mk_req_extended
krb5_data *,
krb5_creds *,
krb5_data * ));
-krb5_error_code INTERFACE krb5_rd_req_simple
- PROTOTYPE((krb5_context,
- const krb5_data *,
- krb5_const_principal,
- const krb5_address *,
- krb5_tkt_authent ** ));
krb5_error_code INTERFACE krb5_mk_rep
PROTOTYPE((krb5_context,
- const krb5_ap_rep_enc_part *,
- const krb5_keyblock *,
+ krb5_auth_context *,
krb5_data *));
krb5_error_code INTERFACE krb5_rd_rep
PROTOTYPE((krb5_context,
@@ -513,34 +506,23 @@ krb5_error_code INTERFACE krb5_decode_kdc_rep
const krb5_enctype,
krb5_kdc_rep ** ));
-typedef krb5_error_code (INTERFACE *krb5_rdreq_key_proc) PROTOTYPE((krb5_context,
- krb5_pointer,
- krb5_principal,
- krb5_kvno,
- krb5_keytype,
- krb5_keyblock **));
-
krb5_error_code INTERFACE krb5_rd_req
PROTOTYPE((krb5_context,
+ krb5_auth_context **,
const krb5_data *,
krb5_const_principal,
- const krb5_address *,
- const char *,
- krb5_rdreq_key_proc,
- krb5_pointer,
- krb5_rcache,
- krb5_tkt_authent ** ));
+ krb5_keytab,
+ krb5_flags *,
+ krb5_ticket **));
krb5_error_code INTERFACE krb5_rd_req_decoded
PROTOTYPE((krb5_context,
+ krb5_auth_context **,
const krb5_ap_req *,
krb5_const_principal,
- const krb5_address *,
- const char *,
- krb5_rdreq_key_proc,
- krb5_pointer,
- krb5_rcache,
- krb5_tkt_authent ** ));
+ krb5_keytab,
+ krb5_flags *,
+ krb5_ticket **));
krb5_error_code INTERFACE krb5_kt_read_service_key
PROTOTYPE((krb5_context,
@@ -582,19 +564,14 @@ krb5_error_code INTERFACE krb5_sendauth
krb5_creds **));
krb5_error_code INTERFACE krb5_recvauth PROTOTYPE((krb5_context,
+ krb5_auth_context **,
krb5_pointer,
char *,
krb5_principal,
- krb5_address *,
- krb5_pointer,
- krb5_rdreq_key_proc,
- krb5_pointer,
char *,
krb5_int32,
- krb5_int32 *,
- krb5_principal*,
- krb5_ticket **,
- krb5_authenticator **));
+ krb5_keytab,
+ krb5_ticket **));
krb5_error_code INTERFACE krb5_walk_realm_tree
PROTOTYPE((krb5_context,
@@ -642,6 +619,11 @@ krb5_error_code INTERFACE krb5_auth_con_getaddrs
krb5_address **,
krb5_address **));
+krb5_error_code INTERFACE krb5_auth_con_setuseruserkey
+ PROTOTYPE((krb5_context,
+ krb5_auth_context *,
+ krb5_keyblock *));
+
krb5_error_code INTERFACE krb5_auth_con_getlocalsubkey
PROTOTYPE((krb5_context,
krb5_auth_context *,
@@ -662,6 +644,11 @@ krb5_error_code INTERFACE krb5_auth_con_getlocalseqnumber
krb5_auth_context *,
krb5_int32 *));
+krb5_error_code INTERFACE krb5_auth_con_getremoteseqnumber
+ PROTOTYPE((krb5_context,
+ krb5_auth_context *,
+ krb5_int32 *));
+
krb5_error_code INTERFACE krb5_auth_con_setivector
PROTOTYPE((krb5_context,
krb5_auth_context *,