I am testing "add_presence_callback".
First, modify "roster.rb" provided in the examples, nothing really special here...
...
cl = Client.new(jid)
cl.connect
cl.auth(password)
cl.send(Iq.new_rosterget)
cl.add_presence_callback { |pres|
puts "presence: from #{pres.from} type #{pres.type} to #{pres.to}"
}
cl.add_iq_callback { |i|
...
}
exit = false
while not exit
end
cl.close
Then to test,
start roster.rb using account A
start echo.rb using account B (sends Presence, also in examples)
expecting A will be notified of B's availability, but not happening
really appreciated