blob: a133e88388732a4d69464d340d7233c8e834be16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
package hackers_git
import p "nslcd_proto"
func (o *Hackers) PAM_Authentication(cred p.Ucred, req p.Request_PAM_Authentication) p.PAM_Authentication_Enumerator {
o.lock.RLock()
defer o.lock.RUnlock()
// TODO
return nil
}
func (o *Hackers) PAM_Authorization(cred p.Ucred, req p.Request_PAM_Authorization) p.PAM_Authorization_Enumerator {
o.lock.RLock()
defer o.lock.RUnlock()
// TODO
return nil
}
func (o *Hackers) PAM_SessionOpen(cred p.Ucred, req p.Request_PAM_SessionOpen) p.PAM_SessionOpen_Enumerator {
o.lock.RLock()
defer o.lock.RUnlock()
// TODO
return nil
}
func (o *Hackers) PAM_SessionClose(cred p.Ucred, req p.Request_PAM_SessionClose) p.PAM_SessionClose_Enumerator {
o.lock.RLock()
defer o.lock.RUnlock()
// TODO
return nil
}
|