clear_widgets

clear_widgets(*args) Class Public methods

full_name

full_name() Instance Public methods

new

Addrinfo.new(sockaddr) => addrinfoAddrinfo.new(sockaddr, family) => addrinfoAddrinfo.new(sockaddr, family, socktype) => addrinfoAddrinfo.new(sockaddr, family, socktype, protocol) => addrinfo Class Public methods returns a new instance of Addrinfo. The instance contains sockaddr, family, socktype, protocol. sockaddr means struct sockaddr which can be used for connect(2), etc. family, socktype and protocol are int

new

new(parent,*args) Class Public methods

enable

enable() Class Public methods

auth_data=

cipher.auth_data = string â string Instance Public methods Sets the cipher's additional authenticated data. This field must be set when using AEAD cipher modes such as GCM or CCM. If no associated data shall be used, this method must still be called with a value of ââ. The contents of this field should be non-sensitive data which will be added to the ciphertext to generate the authentication tag which validates the contents of the ciphertext. The AAD must be set prior to encryptio

dataType

dataType() Instance Public methods VARIANT dataType the data type of the node

assert_generates

assert_generates(expected_path, options, defaults={}, extras={}, message=nil) Instance Public methods Asserts that the provided options can be used to generate the provided path. This is the inverse of assert_recognizes. The extras parameter is used to tell the request the names and values of additional request parameters that would be in a query string. The message parameter allows you to specify a custom error message for assertion failures. The defaults parameter is unused. # As

configinfo

configinfo(win, slot=nil) Class Public methods

accept_nonblock

unixserver.accept_nonblock => unixsocket Instance Public methods Accepts an incoming connection using accept(2) after O_NONBLOCK is set for the underlying file descriptor. It returns an accepted UNIXSocket for the incoming connection. Example require 'socket' serv = UNIXServer.new("/tmp/sock") begin # emulate blocking accept sock = serv.accept_nonblock rescue IO::WaitReadable, Errno::EINTR IO.select([serv]) retry end # sock is an accepted socket. Refer to Socket#accept f