comparison libpam-sys/libpam-sys-helpers/src/constants.rs @ 137:88627c057709 default tip

Add Sun PAM functions from Illumos headers.
author Paul Fisher <paul@pfish.zone>
date Thu, 03 Jul 2025 17:33:13 -0400
parents efbc235f01d3
children
comparison
equal deleted inserted replaced
136:efbc235f01d3 137:88627c057709
293 PAM_AUSER, 293 PAM_AUSER,
294 ); 294 );
295 295
296 /// A flag for `pam_chauthtok`. 296 /// A flag for `pam_chauthtok`.
297 pub const PAM_NO_AUTHTOK_CHECK: i32 = 0b1000; 297 pub const PAM_NO_AUTHTOK_CHECK: i32 = 0b1000;
298 } 298
299 define!(
300 /// A flag for `__pam_get_authtok`.
301 PAM_PROMPT = 1;
302 PAM_HANDLE = 2;
303 );
304 }