Method: Subnets::Net4#address
- Defined in:
- ext/subnets/ext.c
#address ⇒ Object
762 763 764 765 766 767 |
# File 'ext/subnets/ext.c', line 762
VALUE
method_net4_address(VALUE self) {
net4_t *net;
Data_Get_Struct(self, net4_t, net);
return ip4_new(IP4, net->address);
}
|