Skip to content

Commit

Permalink
Fix the reset for requstIndex.
Browse files Browse the repository at this point in the history
  • Loading branch information
Wixmix committed Apr 14, 2021
1 parent 8a49e52 commit 878b2ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fuzzingtool/conn/Request.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def setTimeout(self, timeout: int):

def resetRequestIndex(self):
"""Resets the request index to 0"""
self.__requestIndex = 1
self.__requestIndex = 0

def testConnection(self):
"""Test the connection with the target, and raise an exception if couldn't connect"""
Expand Down

0 comments on commit 878b2ff

Please sign in to comment.