Sinatra

May not be the best place to ask, but...

...anyone got experenice with Sinatra? Does anyone know how to send
this to webrick via sinatra?

server = HTTPServer.new {:DoNotReverseLookup => true, ...}

Thanks,

Dennis

Have you tried setting the flag in BasicSocket, like so:

  BasicSocket.do_not_reverse_lookup = true

You can set it on a per socket basis as well.

Hope that helps,
Ammar

ยทยทยท

On Thu, Jul 15, 2010 at 5:48 PM, Dennis Nedry <dennis@cortex-media.info>wrote:

May not be the best place to ask, but...

...anyone got experenice with Sinatra? Does anyone know how to send
this to webrick via sinatra?

server = HTTPServer.new {:DoNotReverseLookup => true, ...}

Thanks,

Dennis