From 9842858add66b084d4fc6f662d40daa0e984f131 Mon Sep 17 00:00:00 2001 From: akr Date: Fri, 13 Feb 2009 14:43:12 +0000 Subject: rdoc update. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22292 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/socket/ancdata.c | 6 +++--- ext/socket/basicsocket.c | 8 +++++++- 2 files changed, 10 insertions(+), 4 deletions(-) (limited to 'ext') diff --git a/ext/socket/ancdata.c b/ext/socket/ancdata.c index 755fa38463..8fbe6bda08 100644 --- a/ext/socket/ancdata.c +++ b/ext/socket/ancdata.c @@ -993,7 +993,7 @@ bsock_sendmsg_internal(int argc, VALUE *argv, VALUE sock, int nonblock) /* * call-seq: - * basicsocket.sendmsg(mesg, flags=0, dest_sockaddr=nil, *controls) => sent_len + * basicsocket.sendmsg(mesg, flags=0, dest_sockaddr=nil, *controls) => numbytes_sent * * sendmsg sends a message using sendmsg(2) system call in blocking manner. * @@ -1010,7 +1010,7 @@ bsock_sendmsg_internal(int argc, VALUE *argv, VALUE sock, int nonblock) * 3-elements array. * The 3-element array should contains cmsg_level, cmsg_type and data. * - * The return value, _sent_len_, is an integer which is the number of bytes sent. + * The return value, _numbytes_sent_sent is an integer which is the number of bytes sent. * * sendmsg can be used to implement send_io as follows: * @@ -1031,7 +1031,7 @@ bsock_sendmsg(int argc, VALUE *argv, VALUE sock) /* * call-seq: - * basicsocket.sendmsg_nonblock(mesg, flags=0, dest_sockaddr=nil, *controls) => sent_len + * basicsocket.sendmsg_nonblock(mesg, flags=0, dest_sockaddr=nil, *controls) => numbytes_sent * * sendmsg_nonblock sends a message using sendmsg(2) system call in non-blocking manner. * diff --git a/ext/socket/basicsocket.c b/ext/socket/basicsocket.c index 5510c659f8..550c9500ba 100644 --- a/ext/socket/basicsocket.c +++ b/ext/socket/basicsocket.c @@ -370,7 +370,13 @@ bsock_getpeername(VALUE sock) * * Socket.unix_server_loop("/tmp/sock") {|s| * begin - * p s.getpeereid #=> [1000, 1000] + * euid, egid = s.getpeereid + * + * # Check the connected client is myself or not. + * next if euid != Process.uid + * + * # do something about my resource. + * * ensure * s.close * end -- cgit v1.2.3