diff options
| author | John Kohl <jtkohl@mit.edu> | 1990-01-17 10:49:55 +0000 |
|---|---|---|
| committer | John Kohl <jtkohl@mit.edu> | 1990-01-17 10:49:55 +0000 |
| commit | 2976eea03edc7f3fc77c1f5aed914d9c4dcdb9ab (patch) | |
| tree | afc6122e3d83c74b3e6cf5bf85d6d5ca53f5563a /src/include | |
| parent | f8f45a88fd61002399717116f690f423632182e3 (diff) | |
| download | krb5-2976eea03edc7f3fc77c1f5aed914d9c4dcdb9ab.tar.gz krb5-2976eea03edc7f3fc77c1f5aed914d9c4dcdb9ab.tar.xz krb5-2976eea03edc7f3fc77c1f5aed914d9c4dcdb9ab.zip | |
move principal to base-defs
change names of types to have krb5_ prefix
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@97 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/krb5/krb5.h | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/include/krb5/krb5.h b/src/include/krb5/krb5.h index b663c9ad0..c8d24d3e2 100644 --- a/src/include/krb5/krb5.h +++ b/src/include/krb5/krb5.h @@ -28,10 +28,6 @@ #include <krb5/base-defs.h> #include <krb5/hostaddr.h> - -typedef krb5_data ** krb5_principal; /* array of strings */ - /* CONVENTION: realm is first elem. */ - #include <krb5/encryption.h> #include <krb5/fieldbits.h> #include <krb5/errors.h> @@ -51,7 +47,7 @@ typedef struct _krb5_ticket_times { typedef struct _krb5_authdata { krb5_authdatatype ad_type; int length; - octet contents[1]; /* actually can be more, depending + krb5_octet contents[1]; /* actually can be more, depending on length */ } krb5_authdata; @@ -107,7 +103,7 @@ typedef struct _krb5_credentials { /* Last request fields */ typedef struct _krb5_last_req_entry { krb5_ui_4 value; - octet lr_type; + krb5_octet lr_type; } krb5_last_req_entry; typedef struct _krb5_as_req { @@ -173,7 +169,7 @@ typedef struct _krb5_ap_rep_enc_part { } krb5_ap_rep_enc_part; typedef struct _krb5_response { - octet message_type; + krb5_octet message_type; krb5_data *response; } krb5_response; |
