User profile: bnbertha

User info
User name:bnbertha
Name:Bigun Bertha
Location:Nottingham, UK
History
Joined:
Number of posts:401
Latest posts:

what are *cc and *hh files
There are several filename extensions that are recognised as denoting C++ source code files. .cpp is...

How to write a port scanner in C++ for Linux
I can't see a great deal of benefit with multiple sockets unless each one is in its own thread, so ...

Linux
As a first go at Linux, I think Ubuntu would be a good choice.

How to write a port scanner in C++ for Linux
To 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 process
You already have the pid [code] #include <sys/types.h> #include <signal.h> #include <unistd.h>...