/*
 * Check for new packets from the server
 */

static VALUE connection_run(VALUE self)
{
	IrmoConnection *conn = unwrap_connection(self);

	irmo_connection_run(conn);

	return Qnil;
}