/*
 * Returns the client's ping time, in milliseconds
 */

static VALUE client_ping_time(VALUE self)
{
	IrmoClient *client = unwrap_client(self);

	return INT2NUM(irmo_client_ping_time(client));
}