static VALUE t_stop_proxy (VALUE self, VALUE from)
{
    try {
        evma_stop_proxy(NUM2ULONG (from));
    } catch (std::runtime_error e) {
        rb_raise (EM_eConnectionError, "%s", e.what());
    }
    return Qnil;
}
Example #2
0
static VALUE t_stop_proxy (VALUE self, VALUE from)
{
	evma_stop_proxy(NUM2ULONG (from));
	return Qnil;
}