Sha256: 3e950a69a6dcd638dc6dcdff21279bc4fe7522e76291f347a7b012128f31bfb9
Contents?: true
Size: 396 Bytes
Versions: 16
Compression:
Stored size: 396 Bytes
Contents
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 }
Version data entries
16 entries across 16 versions & 1 rubygems