You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
just found if you put adjacent ip addresses like:"192.0.0.1&192.0.0.2" in the white list, and because you use scope += Substract(ip) + "," + Add(ip) + "-";
for representation, it will run into a range fault.
I'm thinking of
for Substract: if newBytes is contained in the list then -1
for add :if newBytes is contained in the list then +1
Never learned C# though.
Maybe you'll fix it?
The text was updated successfully, but these errors were encountered:
just found if you put adjacent ip addresses like:"192.0.0.1&192.0.0.2" in the white list, and because you use
scope += Substract(ip) + "," + Add(ip) + "-";
for representation, it will run into a range fault.
I'm thinking of
for Substract: if newBytes is contained in the list then -1
for add :if newBytes is contained in the list then +1
Never learned C# though.
Maybe you'll fix it?
The text was updated successfully, but these errors were encountered: