class Rex::Proto::Http::Response::OK
HTTP 200/OK response class wrapper.
Public Class Methods
new(message = 'OK', proto = DefaultProtocol)
click to toggle source
Calls superclass method
Rex::Proto::Http::Response::new
# File lib/rex/proto/http/response.rb, line 27 def initialize(message = 'OK', proto = DefaultProtocol) super(200, message, proto) end