what are *cc and *hh filesThere are several filename extensions that are recognised as denoting C++ source code files. .cpp is...
How to write a port scanner in C++ for LinuxI can't see a great deal of benefit with multiple sockets unless each one is in its own thread, so ...
LinuxAs a first go at Linux, I think Ubuntu would be a good choice.
How to write a port scanner in C++ for LinuxTo try and use a port you need to create a socket and then bind it to a port. create a socket using...
Command fork() - getting the PID of the child processYou already have the pid [code] #include <sys/types.h> #include <signal.h> #include <unistd.h>...