Method: Thin::Connection#remote_address

Defined in:
lib/thin/connection.rb

#remote_addressObject

IP Address of the remote client.



197
198
199
200
201
202
# File 'lib/thin/connection.rb', line 197

def remote_address
  socket_address
rescue Exception => e
  log_error('Could not infer remote address', e)
  nil
end