The source project of this merge request has been removed.
Improve LAN Port Scanner #12
I took some ideas from nmap man page to improve the performance of the port scanner.
- Reducing the number of packets that need to be sent over the network
- Probe timeout values
So I disabled the Nagle's Algorithm by using TCP_NODELAY
and I timeout
the host to 200ms
.
There is another alternative to improve performance is using CPython.
Edited by Micael Dias