Skip to content

Commit

Permalink
Remove async in name.
Browse files Browse the repository at this point in the history
  • Loading branch information
bchavez committed Oct 26, 2019
1 parent 350672b commit 62a2e58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## v1.0.0
## v1.0.1

* `Cpu.Stress` implemented.
* `Danger.DiskFull` implemented.
Expand Down
2 changes: 1 addition & 1 deletion Source/Havoc/Network.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public class Network : Scenario
/// Exhausts the number of available TCP/IP ports on the local operating system.
/// </summary>
/// <param name="localAdapterAddress">The local adapter to use when opening the TCP/IP port. Default is IPAddress.Any.</param>
public void LocalTcpPortExhaustionAsync(IPAddress localAdapterAddress = null, CancellationToken cancellationToken = default)
public void LocalTcpPortExhaustion(IPAddress localAdapterAddress = null, CancellationToken cancellationToken = default)
{
var listeners = new ConcurrentQueue<TcpListener>();

Expand Down

0 comments on commit 62a2e58

Please sign in to comment.