Make all file names lowercase

This commit is contained in:
2025-08-10 19:31:04 -04:00
parent f14c1b19f5
commit b800c87df0
8 changed files with 7 additions and 7 deletions

View File

@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.10.0)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -I/home/pi/CPP")
project(listener VERSION 0.1.0 LANGUAGES C CXX)
add_executable(listener main.cpp ClientSocketSender.cpp SocketConnectionReceiver.cpp SocketServer.cpp)
add_executable(listener main.cpp clientsocketsender.cpp socketconnectionreceiver.cpp socketserver.cpp)
add_subdirectory(/home/pi/CPP/common /home/pi/CPP/common/build)
target_link_libraries(listener PRIVATE common)

View File

@@ -1,4 +1,4 @@
#include <listener/ClientSocketSender.hpp>
#include <listener/clientsocketsender.hpp>
ClientSocketSender::ClientSocketSender(String ipAddress, int port)
: mIPAddress(ipAddress), mPort(port)

View File

@@ -12,8 +12,8 @@
#include <common/block.hpp>
#include <common/fileio.hpp>
#include <common/utility.hpp>
#include <listener/SocketServer.hpp>
#include <listener/ClientSocketSender.hpp>
#include <listener/socketserver.hpp>
#include <listener/clientsocketsender.hpp>
// https://www.man7.org/linux/man-pages/man2/accept.2.html

View File

@@ -1,4 +1,4 @@
#include <listener/SocketConnectionReceiver.hpp>
#include <listener/socketconnectionreceiver.hpp>
#include <common/utility.hpp>
#include <common/stringbuffer.hpp>

View File

@@ -1,5 +1,5 @@
#include <listener/SocketServer.hpp>
#include <listener/SocketConnectionReceiver.hpp>
#include <listener/socketserver.hpp>
#include <listener/socketconnectionreceiver.hpp>
/// @brief This will construct the socket listener. You must then call listen() to listen for connections
/// @param port