using node.js, the net module for building a tcp server which can hande http requests.
I would like to prevent dos attacks so what I have done is somthing like this:
if (status.numOfCurrentRequests + 1 >= MAX_NUM_OF_CONNECTIONS) {
socket.end();
return;
}
I was wondering if it is better to use :
socket.destroy();
from the API :
socket.destroy() # Ensures that no more I/O activity happens on this socket. Only necessary in case of errors (parse error or so).
what are the differences and benefits?