This project is a simple HTTP server implemented in C++. It listens for incoming connections on a specified port, accepts these connections, and logs the IP address and port number of each client that connects.
This project uses CMake for its build system. To build the project, follow these steps:
-
Open a terminal and navigate to the project's root directory.
-
Create a new directory named
build
and navigate into it:mkdir build cd build
-
Run CMake to generate a Makefile:
cmake ..
-
Run
make
to build the project:make
After building the project, you can run the server with the following command:
./Http