summaryrefslogtreecommitdiffstats
path: root/src/include
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2003-08-26 22:20:16 +0000
committerKen Raeburn <raeburn@mit.edu>2003-08-26 22:20:16 +0000
commit6d1bf21436ae1e29ae16c2c59d278dcbd9250c64 (patch)
tree3e4a7568b68e19ddca47903ceee1a44ce26d7edc /src/include
parent6ff6e760396f3d9b0ba426888f84d237416feeab (diff)
downloadkrb5-6d1bf21436ae1e29ae16c2c59d278dcbd9250c64.tar.gz
krb5-6d1bf21436ae1e29ae16c2c59d278dcbd9250c64.tar.xz
krb5-6d1bf21436ae1e29ae16c2c59d278dcbd9250c64.zip
* krb5.hin (struct _krb5_donot_replay, krb5_rc_default, krb5_rc_resolve_type)
(krb5_rc_resolve_full, krb5_rc_get_type, krb5_rc_default_type) (krb5_rc_default_name, krb5_auth_to_rep): Private declarations moved... * k5-int.h: ...to here. ticket: 1784 status: open git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15798 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
-rw-r--r--src/include/ChangeLog6
-rw-r--r--src/include/k5-int.h50
-rw-r--r--src/include/krb5.hin50
3 files changed, 56 insertions, 50 deletions
diff --git a/src/include/ChangeLog b/src/include/ChangeLog
index 5502f2e952..bbc9bdce64 100644
--- a/src/include/ChangeLog
+++ b/src/include/ChangeLog
@@ -1,5 +1,11 @@
2003-08-26 Ken Raeburn <raeburn@mit.edu>
+ * krb5.hin (struct _krb5_donot_replay, krb5_rc_default)
+ (krb5_rc_resolve_type, krb5_rc_resolve_full, krb5_rc_get_type)
+ (krb5_rc_default_type, krb5_rc_default_name, krb5_auth_to_rep):
+ Private declarations moved...
+ * k5-int.h: ...to here.
+
* configure.in: Don't test for labs, memmove or bcopy.
* k5-int.h (labs, HAVE_LABS): Never define.
* win-mac.h (HAVE_LABS): Don't define.
diff --git a/src/include/k5-int.h b/src/include/k5-int.h
index ba1674a7e6..0cb1aeecb7 100644
--- a/src/include/k5-int.h
+++ b/src/include/k5-int.h
@@ -1771,6 +1771,56 @@ struct krb5_rc_st {
krb5_pointer data;
};
+typedef struct _krb5_donot_replay {
+ krb5_magic magic;
+ krb5_ui_4 hash;
+ char *server; /* null-terminated */
+ char *client; /* null-terminated */
+ krb5_int32 cusec;
+ krb5_timestamp ctime;
+} krb5_donot_replay;
+
+krb5_error_code krb5_rc_default
+ (krb5_context,
+ krb5_rcache *);
+krb5_error_code krb5_rc_resolve_type
+ (krb5_context,
+ krb5_rcache *,char *);
+krb5_error_code krb5_rc_resolve_full
+ (krb5_context,
+ krb5_rcache *,char *);
+char * krb5_rc_get_type
+ (krb5_context,
+ krb5_rcache);
+char * krb5_rc_default_type
+ (krb5_context);
+char * krb5_rc_default_name
+ (krb5_context);
+krb5_error_code krb5_auth_to_rep
+ (krb5_context,
+ krb5_tkt_authent *,
+ krb5_donot_replay *);
+
+
+krb5_error_code KRB5_CALLCONV krb5_rc_initialize
+ (krb5_context, krb5_rcache,krb5_deltat);
+krb5_error_code KRB5_CALLCONV krb5_rc_recover
+ (krb5_context, krb5_rcache);
+krb5_error_code KRB5_CALLCONV krb5_rc_destroy
+ (krb5_context, krb5_rcache);
+krb5_error_code KRB5_CALLCONV krb5_rc_close
+ (krb5_context, krb5_rcache);
+krb5_error_code KRB5_CALLCONV krb5_rc_store
+ (krb5_context, krb5_rcache,krb5_donot_replay *);
+krb5_error_code KRB5_CALLCONV krb5_rc_expunge
+ (krb5_context, krb5_rcache);
+krb5_error_code KRB5_CALLCONV krb5_rc_get_lifespan
+ (krb5_context, krb5_rcache,krb5_deltat *);
+char *KRB5_CALLCONV krb5_rc_get_name
+ (krb5_context, krb5_rcache);
+krb5_error_code KRB5_CALLCONV krb5_rc_resolve
+ (krb5_context, krb5_rcache, char *);
+
struct _krb5_rc_ops {
krb5_magic magic;
char *type;
diff --git a/src/include/krb5.hin b/src/include/krb5.hin
index c889bac60b..eae9601912 100644
--- a/src/include/krb5.hin
+++ b/src/include/krb5.hin
@@ -1268,56 +1268,6 @@ krb5_cc_get_type (krb5_context context, krb5_ccache cache);
struct krb5_rc_st;
typedef struct krb5_rc_st *krb5_rcache;
-#if KRB5_PRIVATE
-typedef struct _krb5_donot_replay {
- krb5_magic magic;
- char *server; /* null-terminated */
- char *client; /* null-terminated */
- krb5_int32 cusec;
- krb5_timestamp ctime;
-} krb5_donot_replay;
-
-krb5_error_code krb5_rc_default
- (krb5_context,
- krb5_rcache *);
-krb5_error_code krb5_rc_resolve_type
- (krb5_context,
- krb5_rcache *,char *);
-krb5_error_code krb5_rc_resolve_full
- (krb5_context,
- krb5_rcache *,char *);
-char * krb5_rc_get_type
- (krb5_context,
- krb5_rcache);
-char * krb5_rc_default_type
- (krb5_context);
-char * krb5_rc_default_name
- (krb5_context);
-krb5_error_code krb5_auth_to_rep
- (krb5_context,
- krb5_tkt_authent *,
- krb5_donot_replay *);
-
-
-krb5_error_code KRB5_CALLCONV krb5_rc_initialize
- (krb5_context, krb5_rcache,krb5_deltat);
-krb5_error_code KRB5_CALLCONV krb5_rc_recover
- (krb5_context, krb5_rcache);
-krb5_error_code KRB5_CALLCONV krb5_rc_destroy
- (krb5_context, krb5_rcache);
-krb5_error_code KRB5_CALLCONV krb5_rc_close
- (krb5_context, krb5_rcache);
-krb5_error_code KRB5_CALLCONV krb5_rc_store
- (krb5_context, krb5_rcache,krb5_donot_replay *);
-krb5_error_code KRB5_CALLCONV krb5_rc_expunge
- (krb5_context, krb5_rcache);
-krb5_error_code KRB5_CALLCONV krb5_rc_get_lifespan
- (krb5_context, krb5_rcache,krb5_deltat *);
-char *KRB5_CALLCONV krb5_rc_get_name
- (krb5_context, krb5_rcache);
-krb5_error_code KRB5_CALLCONV krb5_rc_resolve
- (krb5_context, krb5_rcache, char *);
-#endif /* KRB5_PRIVATE */
/*
* end "rcache.h"
*/