System.Posix.PAM.Types
- data PamMessage = PamMessage {}
- data PamStyle
- data PamResponse = PamResponse String
- data PamRetCode
- = PamSuccess
- | PamRetCode Int
- data PamFlag = PamFlag Int
- type PamConv = Ptr () -> [PamMessage] -> IO [PamResponse]
- data PamHandle = PamHandle {}
Documentation
Constructors
| PamPromptEchoOff | |
| PamPromptEchoOn | |
| PamErrorMsg | |
| PamTextInfo |
data PamResponse Source
http:www.kernel.orgpublinuxlibspamLinux-PAM-htmladg-interface-of-app-expected.html#adg-pam_conv - resp_code member in C sturct is unused and should be set to zero, that's why there is no code field in the haskell data type
Constructors
| PamResponse String |
Instances
type PamConv = Ptr () -> [PamMessage] -> IO [PamResponse]Source