struct AUTH [src]

Alias for std.c.openbsd.AUTH

Members

Source

pub const AUTH = struct { pub const OKAY: c_int = 0x01; // user authenticated pub const ROOTOKAY: c_int = 0x02; // authenticated as root pub const SECURE: c_int = 0x04; // secure login pub const SILENT: c_int = 0x08; // silent rejection pub const CHALLENGE: c_int = 0x10; // a challenge was given pub const EXPIRED: c_int = 0x20; // account expired pub const PWEXPIRED: c_int = 0x40; // password expired pub const ALLOW: c_int = (OKAY | ROOTOKAY | SECURE); }