Class: DBus::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/dbus/auth.rb

Overview

Authentication client class.

Class tha performs the actional authentication.

Instance Method Summary collapse

Constructor Details

#initialize(socket) ⇒ Client

Create a new authentication client.



44
45
46
47
48
# File 'lib/dbus/auth.rb', line 44

def initialize(socket)
  @socket = socket
  @state = nil
  @auth_list = [External]
end

Instance Method Details

#authenticateObject

Start the authentication process.



51
52
53
54
55
56
57
58
59
60
# File 'lib/dbus/auth.rb', line 51

def authenticate
  @socket.write(0.chr)
  next_authenticator
  @state = :Starting
  while @state != :Authenticated
    r = next_state
    return r if not r
  end
  true
end