Method: Socket::Option#to_s
- Defined in:
- option.c
#data ⇒ String #to_s ⇒ String
137 138 139 140 141 142 143 |
# File 'option.c', line 137
static VALUE
sockopt_data(VALUE self)
{
VALUE v = rb_attr_get(self, rb_intern("data"));
StringValue(v);
return v;
}
|