logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

krb5_get_forwarded_creds, krb5_fwd_tgt_creds — get forwarded credentials from the KDC

Description

krb5_get_forwarded_creds() and krb5_fwd_tgt_creds() get tickets forwarded to  hostname.  If  the  tickets
       that  are forwarded are address-less, the forwarded tickets will also be address-less, otherwise hostname
       will be used for figure out the address to forward the ticket too.

Library

       Kerberos 5 Library (libkrb5, -lkrb5)

Name

       krb5_get_forwarded_creds, krb5_fwd_tgt_creds — get forwarded credentials from the KDC

See Also

krb5(3), krb5_get_credentials(3), krb5.conf(5)

HEIMDAL                                           July 26, 2004                      KRB5_GET_FORWARDED_CREDS(3)

Synopsis

#include<krb5.h>krb5_error_codekrb5_get_forwarded_creds(krb5_contextcontext,     krb5_auth_contextauth_context,    krb5_ccacheccache,
           krb5_flagsflags, constchar*hostname, krb5_creds*in_creds, krb5_data*out_data);

       krb5_error_codekrb5_fwd_tgt_creds(krb5_contextcontext,      krb5_auth_contextauth_context,       constchar*hostname,
           krb5_principalclient,        krb5_principalserver,       krb5_ccacheccache,       intforwardable,
           krb5_data*out_data);

See Also