Make all file names lowercase
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <listener/ClientSocketSender.hpp>
|
||||
#include <listener/clientsocketsender.hpp>
|
||||
|
||||
ClientSocketSender::ClientSocketSender(String ipAddress, int port)
|
||||
: mIPAddress(ipAddress), mPort(port)
|
||||
@@ -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
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include <listener/SocketConnectionReceiver.hpp>
|
||||
#include <listener/socketconnectionreceiver.hpp>
|
||||
#include <common/utility.hpp>
|
||||
#include <common/stringbuffer.hpp>
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user