Method: Gem::Net::HTTP::Persistent#socket_options

Defined in:
lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb

#socket_optionsObject (readonly)

An array of options for Socket#setsockopt.

By default the TCP_NODELAY option is set on sockets.

To set additional options append them to this array:

http.socket_options << [Socket::SOL_SOCKET, Socket::SO_KEEPALIVE, 1]
[View source]

392
393
394
# File 'lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb', line 392

def socket_options
  @socket_options
end