1krb5_verify_init_creds_opt_set_ap_req_nofail -  Set whether credential verification is required.
2=================================================================================================
3
4..
5
6.. c:function:: void krb5_verify_init_creds_opt_set_ap_req_nofail(krb5_verify_init_creds_opt * k5_vic_options, int ap_req_nofail)
7
8..
9
10
11:param:
12
13	          **[in]** **k5_vic_options** - Verification options structure
14
15	          **[in]** **ap_req_nofail** - Whether to require successful verification
16
17
18..
19
20
21
22..
23
24
25
26
27
28
29
30This function determines how krb5_verify_init_creds() behaves if no keytab information is available. If *ap_req_nofail* is **FALSE** , verification will be skipped in this case and krb5_verify_init_creds() will return successfully. If *ap_req_nofail* is **TRUE** , krb5_verify_init_creds() will not return successfully unless verification can be performed.
31
32
33
34If this function is not used, the behavior of krb5_verify_init_creds() is determined through configuration.
35
36
37
38
39
40
41..
42
43
44
45
46
47