This is a Ruby tree! It shows every object from the Ruby Programming Language in a tree format.

getpeername

        # BasicSocket.getpeername

(from ruby core)
---
    basicsocket.getpeername => sockaddr

---

Returns the remote address of the socket as a sockaddr string.

    TCPServer.open("127.0.0.1", 1440) {|serv|
      c = TCPSocket.new("127.0.0.1", 1440)
      s = serv.accept
      p s.getpeername #=> "\x02\x00\x82u\x7F\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00"
    }

If Addrinfo object is preferred over the binary string, use
BasicSocket#remote_address.



      

This is MURDOC! A Ruby documentation browser inspired by Smalltalk-80. It allows you to learn about Ruby by browsing through its class hierarchies, and see any of its methods.