diff --git a/common/CMakeLists.txt b/common/CMakeLists.txt index 36356afe9..fb4416868 100644 --- a/common/CMakeLists.txt +++ b/common/CMakeLists.txt @@ -18,30 +18,30 @@ SET(common_sources eqdb.cpp eqdb_res.cpp eqemu_exception.cpp - EQEmuConfig.cpp - EQEMuError.cpp - EQPacket.cpp - EQStream.cpp - EQStreamFactory.cpp - EQStreamIdent.cpp - EQStreamProxy.cpp + eqemu_config.cpp + eqemu_error.cpp + eq_packet.cpp + eq_stream.cpp + eq_stream_factory.cpp + eq_stream_ident.cpp + eq_stream_proxy.cpp eqtime.cpp extprofile.cpp faction.cpp guild_base.cpp guilds.cpp ipc_mutex.cpp - Item.cpp + item.cpp logsys.cpp logsys_eqemu.cpp md5.cpp memory_mapped_file.cpp misc.cpp - MiscFunctions.cpp + misc_functions.cpp moremath.cpp - Mutex.cpp - MySQLRequestResult.cpp - MySQLRequestRow.cpp + mutex.cpp + mysql_request_result.cpp + mysql_request_row.cpp opcode_map.cpp opcodemgr.cpp packet_dump.cpp @@ -49,7 +49,7 @@ SET(common_sources packet_functions.cpp perl_eqdb.cpp perl_eqdb_res.cpp - ProcLauncher.cpp + proc_launcher.cpp ptimer.cpp races.cpp rdtsc.cpp @@ -57,24 +57,23 @@ SET(common_sources serverinfo.cpp shareddb.cpp spdat.cpp - StringUtil.cpp - StructStrategy.cpp - TCPConnection.cpp - TCPServer.cpp + string_util.cpp + struct_strategy.cpp + tcp_connection.cpp + tcp_server.cpp timeoutmgr.cpp timer.cpp unix.cpp worldconn.cpp - XMLParser.cpp + xml_parser.cpp platform.cpp - patches/Client62.cpp + patches/client62.cpp patches/patches.cpp - patches/SoD.cpp - patches/SoF.cpp - patches/RoF.cpp - #patches/RoF2.cpp - patches/Titanium.cpp - patches/Underfoot.cpp + patches/sod.cpp + patches/sof.cpp + patches/rof.cpp + patches/titanium.cpp + patches/underfoot.cpp SocketLib/Base64.cpp SocketLib/File.cpp SocketLib/HttpdCookies.cpp diff --git a/common/EQPacket.cpp b/common/eq_packet.cpp similarity index 100% rename from common/EQPacket.cpp rename to common/eq_packet.cpp diff --git a/common/EQStream.cpp b/common/eq_stream.cpp similarity index 100% rename from common/EQStream.cpp rename to common/eq_stream.cpp diff --git a/common/EQStreamFactory.cpp b/common/eq_stream_factor.cpp similarity index 100% rename from common/EQStreamFactory.cpp rename to common/eq_stream_factor.cpp diff --git a/common/EQStreamIdent.cpp b/common/eq_stream_ident.cpp similarity index 100% rename from common/EQStreamIdent.cpp rename to common/eq_stream_ident.cpp diff --git a/common/EQStreamProxy.cpp b/common/eq_stream_proxy.cpp similarity index 100% rename from common/EQStreamProxy.cpp rename to common/eq_stream_proxy.cpp diff --git a/common/EQEmuConfig.cpp b/common/eqemu_config.cpp similarity index 100% rename from common/EQEmuConfig.cpp rename to common/eqemu_config.cpp diff --git a/common/EQEMuError.cpp b/common/eqemu_error.cpp similarity index 100% rename from common/EQEMuError.cpp rename to common/eqemu_error.cpp diff --git a/common/Item.cpp b/common/item.cpp similarity index 100% rename from common/Item.cpp rename to common/item.cpp diff --git a/common/MiscFunctions.cpp b/common/misc_functions.cpp similarity index 100% rename from common/MiscFunctions.cpp rename to common/misc_functions.cpp diff --git a/common/Mutex.cpp b/common/mutex.cpp similarity index 100% rename from common/Mutex.cpp rename to common/mutex.cpp diff --git a/common/MySQLRequestResult.cpp b/common/mysql_request_result.cpp similarity index 100% rename from common/MySQLRequestResult.cpp rename to common/mysql_request_result.cpp diff --git a/common/MySQLRequestRow.cpp b/common/mysql_request_row.cpp similarity index 100% rename from common/MySQLRequestRow.cpp rename to common/mysql_request_row.cpp diff --git a/common/patches/Client62.cpp b/common/patches/client62.cpp similarity index 100% rename from common/patches/Client62.cpp rename to common/patches/client62.cpp diff --git a/common/patches/RoF.cpp b/common/patches/rof.cpp similarity index 100% rename from common/patches/RoF.cpp rename to common/patches/rof.cpp diff --git a/common/patches/SoD.cpp b/common/patches/sod.cpp similarity index 100% rename from common/patches/SoD.cpp rename to common/patches/sod.cpp diff --git a/common/patches/SoF.cpp b/common/patches/sof.cpp similarity index 100% rename from common/patches/SoF.cpp rename to common/patches/sof.cpp diff --git a/common/patches/Titanium.cpp b/common/patches/titanium.cpp similarity index 100% rename from common/patches/Titanium.cpp rename to common/patches/titanium.cpp diff --git a/common/patches/Underfoot.cpp b/common/patches/underfoot.cpp similarity index 100% rename from common/patches/Underfoot.cpp rename to common/patches/underfoot.cpp diff --git a/common/ProcLauncher.cpp b/common/proc_launcher.cpp similarity index 100% rename from common/ProcLauncher.cpp rename to common/proc_launcher.cpp diff --git a/common/StringUtil.cpp b/common/string_util.cpp similarity index 100% rename from common/StringUtil.cpp rename to common/string_util.cpp diff --git a/common/StructStrategy.cpp b/common/struct_strategy.cpp similarity index 100% rename from common/StructStrategy.cpp rename to common/struct_strategy.cpp diff --git a/common/TCPConnection.cpp b/common/tcp_connection.cpp similarity index 100% rename from common/TCPConnection.cpp rename to common/tcp_connection.cpp diff --git a/common/TCPServer.cpp b/common/tcp_server.cpp similarity index 100% rename from common/TCPServer.cpp rename to common/tcp_server.cpp diff --git a/common/XMLParser.cpp b/common/xml_parser.cpp similarity index 100% rename from common/XMLParser.cpp rename to common/xml_parser.cpp