diff options
author | Zhanna Tsitkov <tsitkova@mit.edu> | 2011-09-26 20:23:15 +0000 |
---|---|---|
committer | Zhanna Tsitkov <tsitkova@mit.edu> | 2011-09-26 20:23:15 +0000 |
commit | 40c6667f1f058fa930b3b57519bb9a1267e8d2e2 (patch) | |
tree | c9a1c1f84e43d55d9bd1ce66655d24d769fa09c3 /doc | |
parent | 5c1b556e6d12fe797a748fd4b8ebd9fac722d234 (diff) | |
download | krb5-40c6667f1f058fa930b3b57519bb9a1267e8d2e2.tar.gz krb5-40c6667f1f058fa930b3b57519bb9a1267e8d2e2.tar.xz krb5-40c6667f1f058fa930b3b57519bb9a1267e8d2e2.zip |
Documentation - Updated the API list with the new interfaces.
Added reference to the examples subdirectory in Doxygen configuration file.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@25238 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'doc')
-rw-r--r-- | doc/rst_source/krb_appldev/refs/api/index.rst | 7 | ||||
-rw-r--r-- | doc/rst_source/krb_users/user_commands/kinit.rst | 40 |
2 files changed, 27 insertions, 20 deletions
diff --git a/doc/rst_source/krb_appldev/refs/api/index.rst b/doc/rst_source/krb_appldev/refs/api/index.rst index f07469a3e..9e172afc2 100644 --- a/doc/rst_source/krb_appldev/refs/api/index.rst +++ b/doc/rst_source/krb_appldev/refs/api/index.rst @@ -135,21 +135,26 @@ Rarely used public interfaces krb5_auth_con_setsendsubkey.rst krb5_auth_con_setsendsubkey_k.rst krb5_auth_con_setuseruserkey.rst + krb5_cc_cache_match.rst krb5_cc_copy_creds.rst krb5_cc_end_seq_get.rst krb5_cc_get_config.rst krb5_cc_get_flags.rst + krb5_cc_get_full_name.rst krb5_cc_last_change_time.rst krb5_cc_lock.rst krb5_cc_move.rst krb5_cc_next_cred.rst krb5_cc_remove_cred.rst krb5_cc_retrieve_cred.rst + krb5_cc_select.rst krb5_cc_set_config.rst krb5_cc_set_default_name.rst krb5_cc_set_flags.rst krb5_cc_start_seq_get.rst krb5_cc_store_cred.rst + krb5_cc_support_switch.rst + krb5_cc_switch.rst krb5_cc_unlock.rst krb5_cccol_cursor_free.rst krb5_cccol_cursor_new.rst @@ -184,6 +189,8 @@ Rarely used public interfaces krb5_free_keyblock.rst krb5_free_keyblock_contents.rst krb5_free_keytab_entry_contents.rst + krb5_free_octet_data.rst + krb5_free_string.rst krb5_free_ticket.rst krb5_free_unparsed_name.rst krb5_get_permitted_enctypes.rst diff --git a/doc/rst_source/krb_users/user_commands/kinit.rst b/doc/rst_source/krb_users/user_commands/kinit.rst index 49a256470..a2532eb53 100644 --- a/doc/rst_source/krb_users/user_commands/kinit.rst +++ b/doc/rst_source/krb_users/user_commands/kinit.rst @@ -6,26 +6,26 @@ kinit - obtain and cache Kerberos ticket-granting ticket SYNOPSIS ~~~~~~~~ -kinit - [**-V**] - [**-l** *lifetime*] - [**-s** *start_time*] - [**-r** *renewable_life*] - [**-p** | -**P**] - [**-f** | -**F**] - [**-a**] - [**-A**] - [**-C**] - [**-E**] - [**-v**] - [**-R**] - [**-k** [-**t** *keytab_file*]] - [**-c** *cache_name*] - [**-n**] - [**-S** *service_name*] - [**-T** *armor_ccache*] - [**-X** *attribute[=value]*] - [*principal*] +**kinit** + [**-V**] + [**-l** *lifetime*] + [**-s** *start_time*] + [**-r** *renewable_life*] + [**-p** | -**P**] + [**-f** | -**F**] + [**-a**] + [**-A**] + [**-C**] + [**-E**] + [**-v**] + [**-R**] + [**-k** [-**t** *keytab_file*]] + [**-c** *cache_name*] + [**-n**] + [**-S** *service_name*] + [**-T** *armor_ccache*] + [**-X** *attribute[=value]*] + [*principal*] DESCRIPTION |