/*
 * Check for new packets received at the socket
 */

static VALUE socket_run(VALUE self)
{
	IrmoSocket *sock = unwrap_socket(self);

	irmo_socket_run(sock);

	return Qnil;
}