mirror of
https://github.com/containers/podman.git
synced 2025-09-10 04:12:20 +08:00

Update the outdated systemd and dbus dependencies which are now provided as go modules. This will further tighten our dependencies and releases and pave the way for the upcoming auto-update feature. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
17 lines
396 B
Go
17 lines
396 B
Go
package dbus
|
|
|
|
// AuthAnonymous returns an Auth that uses the ANONYMOUS mechanism.
|
|
func AuthAnonymous() Auth {
|
|
return &authAnonymous{}
|
|
}
|
|
|
|
type authAnonymous struct{}
|
|
|
|
func (a *authAnonymous) FirstData() (name, resp []byte, status AuthStatus) {
|
|
return []byte("ANONYMOUS"), nil, AuthOk
|
|
}
|
|
|
|
func (a *authAnonymous) HandleData(data []byte) (resp []byte, status AuthStatus) {
|
|
return nil, AuthError
|
|
}
|