• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/MITKerberosShim-66/

Lines Matching refs:opt

41 krb5_get_init_creds_opt_init(mit_krb5_get_init_creds_opt *opt)
44 memset(opt, 0, sizeof(*opt));
49 mit_krb5_get_init_creds_opt *opt,
61 mit_krb5_get_init_creds_opt **opt)
68 *opt = c;
74 mit_krb5_get_init_creds_opt *opt)
77 free(opt);
82 krb5_get_init_creds_opt_set_tkt_life(mit_krb5_get_init_creds_opt *opt,
86 opt->flags |= MIT_KRB5_GET_INIT_CREDS_OPT_TKT_LIFE;
87 opt->tkt_life = tkt_life;
91 krb5_get_init_creds_opt_set_renew_life(mit_krb5_get_init_creds_opt *opt,
95 opt->flags |= MIT_KRB5_GET_INIT_CREDS_OPT_RENEW_LIFE;
96 opt->renew_life = renew_life;
100 krb5_get_init_creds_opt_set_forwardable(mit_krb5_get_init_creds_opt *opt,
104 opt->flags |= MIT_KRB5_GET_INIT_CREDS_OPT_FORWARDABLE;
105 opt->forwardable = forwardable;
109 krb5_get_init_creds_opt_set_proxiable(mit_krb5_get_init_creds_opt *opt,
113 opt->flags |= MIT_KRB5_GET_INIT_CREDS_OPT_PROXIABLE;
114 opt->proxiable = proxiable;
118 krb5_get_init_creds_opt_set_canonicalize(mit_krb5_get_init_creds_opt *opt,
122 opt->flags |= MIT_KRB5_GET_INIT_CREDS_OPT_CANONICALIZE;
126 krb5_get_init_creds_opt_set_etype_list(mit_krb5_get_init_creds_opt *opt,
131 opt->flags |= KRB5_GET_INIT_CREDS_OPT_ETYPE_LIST;
132 opt->etype_list = etype_list;
133 opt->etype_list_length = etype_list_length;
137 krb5_get_init_creds_opt_set_address_list(mit_krb5_get_init_creds_opt *opt,
144 krb5_get_init_creds_opt_set_preauth_list(mit_krb5_get_init_creds_opt *opt,
154 krb5_get_init_creds_opt *opt = NULL;
156 heim_krb5_get_init_creds_opt_alloc(context, &opt);
158 heim_krb5_get_init_creds_opt_set_forwardable(opt, mopt->forwardable);
160 heim_krb5_get_init_creds_opt_set_proxiable(opt, mopt->proxiable);
162 heim_krb5_get_init_creds_opt_set_canonicalize(HC(context), opt, TRUE);
164 heim_krb5_get_init_creds_opt_set_tkt_life(opt, mopt->tkt_life);
166 heim_krb5_get_init_creds_opt_set_renew_life(opt, mopt->renew_life);
169 return opt;
184 krb5_get_init_creds_opt *opt = NULL;
191 opt = mshim_gic_opt(HC(context), mopt);
201 if (opt)
202 heim_krb5_get_init_creds_opt_free(HC(context), opt);
207 pfct, NULL, start_time, in_tkt_service, opt);
208 if (opt)
209 heim_krb5_get_init_creds_opt_free(HC(context), opt);
230 krb5_get_init_creds_opt *opt = NULL;
236 opt = mshim_gic_opt(HC(context), mopt);
243 start_time, in_tkt_service, opt);
244 if (opt)
245 heim_krb5_get_init_creds_opt_free(HC(context), opt);