Remove unused includes and added some comments

This commit is contained in:
Pablu23
2024-07-08 16:49:03 +02:00
parent f25b8891da
commit a9cdf59a97
4 changed files with 6 additions and 10 deletions

View File

@@ -1,12 +1,6 @@
#include "router.hpp"
#include <algorithm> // std::equal
#include <cctype> // std::tolower
#include <csignal>
#include <netinet/in.h>
#include <string_view> // std::string_view
#include <strings.h>
#include <sys/socket.h>
#include <vector>
Router::Router(int port) {
m_socket = socket(AF_INET, SOCK_STREAM, 0);