class Libvirt::NWFilter
Attributes
Public Instance Methods
Source
static VALUE libvirt_nwfilter_free(VALUE n)
{
ruby_libvirt_generate_call_free(NWFilter, n);
}
Call virNWFilterFree to free this network filter. After this call the network filter object is no longer valid.
Source
static VALUE libvirt_nwfilter_name(VALUE n)
{
ruby_libvirt_generate_call_string(virNWFilterGetName,
ruby_libvirt_connect_get(n), 0,
nwfilter_get(n));
}
Call virNWFilterGetName to retrieve the network filter name.
Source
static VALUE libvirt_nwfilter_undefine(VALUE n)
{
ruby_libvirt_generate_call_nil(virNWFilterUndefine,
ruby_libvirt_connect_get(n),
nwfilter_get(n));
}
Call virNWFilterUndefine to undefine the network filter.
Source
static VALUE libvirt_nwfilter_uuid(VALUE n)
{
ruby_libvirt_generate_uuid(virNWFilterGetUUIDString,
ruby_libvirt_connect_get(n), nwfilter_get(n));
}
Call virNWFilterGetUUIDString to retrieve the network filter UUID.
Source
static VALUE libvirt_nwfilter_xml_desc(int argc, VALUE *argv, VALUE n)
{
VALUE flags = RUBY_Qnil;
rb_scan_args(argc, argv, "01", &flags);
ruby_libvirt_generate_call_string(virNWFilterGetXMLDesc,
ruby_libvirt_connect_get(n), 1,
nwfilter_get(n),
ruby_libvirt_value_to_uint(flags));
}
Call virNWFilterGetXMLDesc to retrieve the XML for this network filter.