Method: Rex::Socket.addr_itoa

Defined in:
lib/rex/socket.rb

.addr_itoa(addr, v6 = false) ⇒ Object

Converts an integer address into ascii



331
332
333
334
335
# File 'lib/rex/socket.rb', line 331

def self.addr_itoa(addr, v6=false)
  nboa = addr_iton(addr, v6)

  addr_ntoa(nboa)
end