# HG changeset patch # User Marc Brinkmann # Date 1488107291 -3600 # Node ID 827faa55452897d0f97e249584b7e17045d5d992 # Parent 74b53b921b23e4a1d8a68f0ed8ea5dd98551c94a Added items module. diff -r 74b53b921b23 -r 827faa554528 src/items.rs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/items.rs Sun Feb 26 12:08:11 2017 +0100 @@ -0,0 +1,70 @@ +use std::marker::PhantomData; +use constants::{PamItemType, PAM_SERVICE, PAM_USER, PAM_USER_PROMPT, PAM_TTY, PAM_RUSER, PAM_RHOST, + PAM_AUTHTOK, PAM_OLDAUTHTOK}; +use module::PamItem; +pub use conv::PamConv; + + +pub struct PamService {} + +impl PamItem for PamService { + fn item_type(_: PhantomData) -> PamItemType { + PAM_SERVICE + } +} + +pub struct PamUser {} + +impl PamItem for PamUser { + fn item_type(_: PhantomData) -> PamItemType { + PAM_USER + } +} + +pub struct PamUserPrompt {} + +impl PamItem for PamUserPrompt { + fn item_type(_: PhantomData) -> PamItemType { + PAM_USER_PROMPT + } +} + +pub struct PamTty {} + +impl PamItem for PamTty { + fn item_type(_: PhantomData) -> PamItemType { + PAM_TTY + } +} + +pub struct PamRUser {} + +impl PamItem for PamRUser { + fn item_type(_: PhantomData) -> PamItemType { + PAM_RUSER + } +} + +pub struct PamRHost {} + +impl PamItem for PamRHost { + fn item_type(_: PhantomData) -> PamItemType { + PAM_RHOST + } +} + +pub struct PamAuthTok {} + +impl PamItem for PamAuthTok { + fn item_type(_: PhantomData) -> PamItemType { + PAM_AUTHTOK + } +} + +pub struct PamOldAuthTok {} + +impl PamItem for PamOldAuthTok { + fn item_type(_: PhantomData) -> PamItemType { + PAM_OLDAUTHTOK + } +} diff -r 74b53b921b23 -r 827faa554528 src/lib.rs --- a/src/lib.rs Sun Feb 26 11:50:19 2017 +0100 +++ b/src/lib.rs Sun Feb 26 12:08:11 2017 +0100 @@ -28,4 +28,5 @@ pub mod conv; pub mod constants; +pub mod items; pub mod module;