mirror of
https://github.com/ruby/ruby.git
synced 2025-08-24 13:34:17 +02:00
* backport r32977 from trunk
* 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/branches/ruby_1_9_3@32979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
28d8d87812
commit
82322e5d4b
16 changed files with 253 additions and 103 deletions
|
@ -135,15 +135,16 @@ unix_sysaccept(VALUE sock)
|
|||
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Document-class: ::UNIXServer < UNIXSocket
|
||||
*
|
||||
* UNIXServer represents a UNIX domain stream server socket.
|
||||
*/
|
||||
void
|
||||
rsock_init_unixserver(void)
|
||||
{
|
||||
#ifdef HAVE_SYS_UN_H
|
||||
/*
|
||||
* Document-class: UNIXServer < UNIXSocket
|
||||
*
|
||||
* UNIXServer represents a UNIX domain stream server socket.
|
||||
*
|
||||
*/
|
||||
rb_cUNIXServer = rb_define_class("UNIXServer", rb_cUNIXSocket);
|
||||
rb_define_method(rb_cUNIXServer, "initialize", unix_svr_init, 1);
|
||||
rb_define_method(rb_cUNIXServer, "accept", unix_accept, 0);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue