MCPcopy Index your code
hub / github.com/sqlmapproject/sqlmap / run

Method run

thirdparty/bottle/bottle.py:3776–3781  ·  view source on GitHub ↗
(self, handler)

Source from the content-addressed store, hash-verified

3774 """ The super hyped asynchronous server by facebook. Untested. """
3775
3776 def run(self, handler): # pragma: no cover
3777 import tornado.wsgi, tornado.httpserver, tornado.ioloop
3778 container = tornado.wsgi.WSGIContainer(handler)
3779 server = tornado.httpserver.HTTPServer(container)
3780 server.listen(port=self.port, address=self.host)
3781 tornado.ioloop.IOLoop.instance().start()
3782
3783
3784class AppEngineServer(ServerAdapter):

Callers

nothing calls this directly

Calls 1

startMethod · 0.80

Tested by

no test coverage detected