def __init__( self, first_line_format, method, scheme, host, port, path, http_version, headers, content, timestamp_start=None, timestamp_end=None, form_out=None, is_replay=False, stickycookie=False, stickyauth=False, ): Request.__init__( self, first_line_format, method, scheme, host, port, path, http_version, headers, content, timestamp_start, timestamp_end, ) self.form_out = form_out or first_line_format # FIXME remove # Have this request's cookies been modified by sticky cookies or auth? self.stickycookie = stickycookie self.stickyauth = stickyauth # Is this request replayed? self.is_replay = is_replay
def __init__( self, form_in, method, scheme, host, port, path, httpversion, headers, body, timestamp_start=None, timestamp_end=None, form_out=None, ): Request.__init__( self, form_in, method, scheme, host, port, path, httpversion, headers, body, timestamp_start, timestamp_end, ) self.form_out = form_out or form_in # Have this request's cookies been modified by sticky cookies or auth? self.stickycookie = False self.stickyauth = False # Is this request replayed? self.is_replay = False