mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket/option.c (sockopt_family_m): renamed from sockopt_family.
(sockopt_level_m): renamed from sockopt_level. (sockopt_optname_m): renamed from sockopt_optname. (inspect_local_peercred): follow the renaming. (Init_sockopt): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22208 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
ba75dd6b95
commit
939efe7d4c
2 changed files with 17 additions and 9 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Tue Feb 10 20:58:47 2009 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
|
* ext/socket/option.c (sockopt_family_m): renamed from sockopt_family.
|
||||||
|
(sockopt_level_m): renamed from sockopt_level.
|
||||||
|
(sockopt_optname_m): renamed from sockopt_optname.
|
||||||
|
(inspect_local_peercred): follow the renaming.
|
||||||
|
(Init_sockopt): ditto.
|
||||||
|
|
||||||
Tue Feb 10 20:56:07 2009 Tanaka Akira <akr@fsij.org>
|
Tue Feb 10 20:56:07 2009 Tanaka Akira <akr@fsij.org>
|
||||||
|
|
||||||
* ext/socket/ancdata.c (anc_inspect_socket_creds): refactored to avoid
|
* ext/socket/ancdata.c (anc_inspect_socket_creds): refactored to avoid
|
||||||
|
|
|
@ -68,7 +68,7 @@ sockopt_new(int family, int level, int optname, VALUE data)
|
||||||
* #=> 10
|
* #=> 10
|
||||||
*/
|
*/
|
||||||
static VALUE
|
static VALUE
|
||||||
sockopt_family(VALUE self)
|
sockopt_family_m(VALUE self)
|
||||||
{
|
{
|
||||||
return rb_attr_get(self, rb_intern("family"));
|
return rb_attr_get(self, rb_intern("family"));
|
||||||
}
|
}
|
||||||
|
@ -83,7 +83,7 @@ sockopt_family(VALUE self)
|
||||||
* #=> 41
|
* #=> 41
|
||||||
*/
|
*/
|
||||||
static VALUE
|
static VALUE
|
||||||
sockopt_level(VALUE self)
|
sockopt_level_m(VALUE self)
|
||||||
{
|
{
|
||||||
return rb_attr_get(self, rb_intern("level"));
|
return rb_attr_get(self, rb_intern("level"));
|
||||||
}
|
}
|
||||||
|
@ -98,7 +98,7 @@ sockopt_level(VALUE self)
|
||||||
* #=> 2
|
* #=> 2
|
||||||
*/
|
*/
|
||||||
static VALUE
|
static VALUE
|
||||||
sockopt_optname(VALUE self)
|
sockopt_optname_m(VALUE self)
|
||||||
{
|
{
|
||||||
return rb_attr_get(self, rb_intern("optname"));
|
return rb_attr_get(self, rb_intern("optname"));
|
||||||
}
|
}
|
||||||
|
@ -290,9 +290,9 @@ inspect_local_peercred(int level, int optname, VALUE data, VALUE ret)
|
||||||
static VALUE
|
static VALUE
|
||||||
sockopt_inspect(VALUE self)
|
sockopt_inspect(VALUE self)
|
||||||
{
|
{
|
||||||
int family = NUM2INT(sockopt_family(self));
|
int family = NUM2INT(sockopt_family_m(self));
|
||||||
int level = NUM2INT(sockopt_level(self));
|
int level = NUM2INT(sockopt_level_m(self));
|
||||||
int optname = NUM2INT(sockopt_optname(self));
|
int optname = NUM2INT(sockopt_optname_m(self));
|
||||||
VALUE data = sockopt_data(self);
|
VALUE data = sockopt_data(self);
|
||||||
VALUE v, ret;
|
VALUE v, ret;
|
||||||
ID family_id, level_id, optname_id;
|
ID family_id, level_id, optname_id;
|
||||||
|
@ -487,9 +487,9 @@ Init_sockopt(void)
|
||||||
{
|
{
|
||||||
rb_cSockOpt = rb_define_class_under(rb_cSocket, "Option", rb_cObject);
|
rb_cSockOpt = rb_define_class_under(rb_cSocket, "Option", rb_cObject);
|
||||||
rb_define_method(rb_cSockOpt, "initialize", sockopt_initialize, 4);
|
rb_define_method(rb_cSockOpt, "initialize", sockopt_initialize, 4);
|
||||||
rb_define_method(rb_cSockOpt, "family", sockopt_family, 0);
|
rb_define_method(rb_cSockOpt, "family", sockopt_family_m, 0);
|
||||||
rb_define_method(rb_cSockOpt, "level", sockopt_level, 0);
|
rb_define_method(rb_cSockOpt, "level", sockopt_level_m, 0);
|
||||||
rb_define_method(rb_cSockOpt, "optname", sockopt_optname, 0);
|
rb_define_method(rb_cSockOpt, "optname", sockopt_optname_m, 0);
|
||||||
rb_define_method(rb_cSockOpt, "data", sockopt_data, 0);
|
rb_define_method(rb_cSockOpt, "data", sockopt_data, 0);
|
||||||
rb_define_method(rb_cSockOpt, "inspect", sockopt_inspect, 0);
|
rb_define_method(rb_cSockOpt, "inspect", sockopt_inspect, 0);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue