mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/socket: Make Socket documentation appear. Add documentation for
Socket, TCPServer, SOCKSSocket. Patch by Sylvain Daubert. [Ruby 1.9 - Feature #5182] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32977 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
39e112f89a
commit
1297942451
16 changed files with 251 additions and 103 deletions
|
@ -732,12 +732,14 @@ bsock_do_not_rev_lookup_set(VALUE self, VALUE val)
|
|||
return val;
|
||||
}
|
||||
|
||||
/*
|
||||
* BasicSocket is the super class for the all socket classes.
|
||||
*/
|
||||
void
|
||||
rsock_init_basicsocket(void)
|
||||
{
|
||||
/*
|
||||
* Document-class: BasicSocket < IO
|
||||
*
|
||||
* BasicSocket is the super class for all the Socket classes.
|
||||
*/
|
||||
rb_cBasicSocket = rb_define_class("BasicSocket", rb_cIO);
|
||||
rb_undef_method(rb_cBasicSocket, "initialize");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue