summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Pioch <lukas@zgow.de>2017-09-19 10:34:08 +0200
committerMattes D <github@xoft.cz>2017-09-19 10:34:08 +0200
commitc5f590d460f75e91d428ecd7758d1bb0910c0942 (patch)
treee70f9b2b5996c6439af396d97e90ad8df18ec74e
parentcFinishGenPreSimulator: Preserve sand meta (#4025) (diff)
downloadcuberite-c5f590d460f75e91d428ecd7758d1bb0910c0942.tar
cuberite-c5f590d460f75e91d428ecd7758d1bb0910c0942.tar.gz
cuberite-c5f590d460f75e91d428ecd7758d1bb0910c0942.tar.bz2
cuberite-c5f590d460f75e91d428ecd7758d1bb0910c0942.tar.lz
cuberite-c5f590d460f75e91d428ecd7758d1bb0910c0942.tar.xz
cuberite-c5f590d460f75e91d428ecd7758d1bb0910c0942.tar.zst
cuberite-c5f590d460f75e91d428ecd7758d1bb0910c0942.zip
-rw-r--r--CMakeLists.txt2
-rw-r--r--Tools/ProtoProxy/Connection.cpp2
-rw-r--r--Tools/ProtoProxy/Connection.h2
-rw-r--r--Tools/ProtoProxy/Server.h2
-rw-r--r--Tools/RCONClient/RCONClient.sln2
-rw-r--r--dev-docs/js/ValueMap.js2
-rw-r--r--lib/mbedtls.cmake2
-rw-r--r--src/Bindings/ManualBindings.cpp2
-rw-r--r--src/Bindings/ManualBindings.h2
-rw-r--r--src/Bindings/ManualBindings_World.cpp2
-rw-r--r--src/BlockEntities/BeaconEntity.cpp2
-rw-r--r--src/BlockEntities/MobSpawnerEntity.cpp2
-rw-r--r--src/Blocks/BlockBed.cpp2
-rw-r--r--src/Blocks/WorldInterface.h2
-rw-r--r--src/ChunkSender.h2
-rw-r--r--src/ClientHandle.cpp2
-rw-r--r--src/Cuberite.vcxproj.user2
-rw-r--r--src/Entities/LeashKnot.cpp2
-rw-r--r--src/Entities/Pawn.cpp2
-rw-r--r--src/HTTP/HTTPServer.cpp2
-rw-r--r--src/HTTP/HTTPServer.h2
-rw-r--r--src/HTTP/SslHTTPServerConnection.cpp2
-rw-r--r--src/HTTP/SslHTTPServerConnection.h2
-rw-r--r--src/Items/ItemBow.h2
-rw-r--r--src/OSSupport/TCPLinkImpl.cpp2
-rw-r--r--src/Protocol/MojangAPI.cpp2
-rw-r--r--src/Root.cpp2
-rw-r--r--src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h2
-rw-r--r--src/World.cpp2
-rw-r--r--src/WorldStorage/FireworksSerializer.cpp2
-rw-r--r--src/WorldStorage/NBTChunkSerializer.h2
-rw-r--r--src/mbedTLS++/AesCfb128Decryptor.cpp2
-rw-r--r--src/mbedTLS++/AesCfb128Decryptor.h2
-rw-r--r--src/mbedTLS++/AesCfb128Encryptor.cpp2
-rw-r--r--src/mbedTLS++/AesCfb128Encryptor.h2
-rw-r--r--src/mbedTLS++/BlockingSslClientSocket.cpp2
-rw-r--r--src/mbedTLS++/BlockingSslClientSocket.h2
-rw-r--r--src/mbedTLS++/BufferedSslContext.cpp2
-rw-r--r--src/mbedTLS++/BufferedSslContext.h2
-rw-r--r--src/mbedTLS++/CallbackSslContext.cpp2
-rw-r--r--src/mbedTLS++/CallbackSslContext.h2
-rw-r--r--src/mbedTLS++/CryptoKey.cpp2
-rw-r--r--src/mbedTLS++/CryptoKey.h2
-rw-r--r--src/mbedTLS++/CtrDrbgContext.cpp2
-rw-r--r--src/mbedTLS++/CtrDrbgContext.h2
-rw-r--r--src/mbedTLS++/EntropyContext.cpp2
-rw-r--r--src/mbedTLS++/EntropyContext.h2
-rw-r--r--src/mbedTLS++/RsaPrivateKey.cpp2
-rw-r--r--src/mbedTLS++/RsaPrivateKey.h2
-rw-r--r--src/mbedTLS++/Sha1Checksum.cpp2
-rw-r--r--src/mbedTLS++/Sha1Checksum.h2
-rw-r--r--src/mbedTLS++/SslContext.cpp2
-rw-r--r--src/mbedTLS++/SslContext.h2
-rw-r--r--src/mbedTLS++/X509Cert.cpp2
-rw-r--r--src/mbedTLS++/X509Cert.h2
-rw-r--r--tests/HTTP/CMakeLists.txt2
-rw-r--r--tests/Network/CMakeLists.txt2
57 files changed, 57 insertions, 57 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 2e3c51854..15a1a5de9 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,4 +1,4 @@
-# This is the top-level CMakeLists.txt file for the Cuberite project
+# This is the top-level CMakeLists.txt file for the Cuberite project
#
# Use CMake to generate the build files for your platform
#
diff --git a/Tools/ProtoProxy/Connection.cpp b/Tools/ProtoProxy/Connection.cpp
index c54157f05..1f765340f 100644
--- a/Tools/ProtoProxy/Connection.cpp
+++ b/Tools/ProtoProxy/Connection.cpp
@@ -1,4 +1,4 @@
-
+
// Connection.cpp
// Interfaces to the cConnection class representing a single pair of connected sockets
diff --git a/Tools/ProtoProxy/Connection.h b/Tools/ProtoProxy/Connection.h
index 226623c93..d8a63d70f 100644
--- a/Tools/ProtoProxy/Connection.h
+++ b/Tools/ProtoProxy/Connection.h
@@ -1,4 +1,4 @@
-
+
// Connection.h
// Interfaces to the cConnection class representing a single pair of connected sockets
diff --git a/Tools/ProtoProxy/Server.h b/Tools/ProtoProxy/Server.h
index 6e930835e..b29c6e394 100644
--- a/Tools/ProtoProxy/Server.h
+++ b/Tools/ProtoProxy/Server.h
@@ -1,4 +1,4 @@
-
+
// Server.h
// Interfaces to the cServer class encapsulating the entire "server"
diff --git a/Tools/RCONClient/RCONClient.sln b/Tools/RCONClient/RCONClient.sln
index 5c977fc81..2337d680b 100644
--- a/Tools/RCONClient/RCONClient.sln
+++ b/Tools/RCONClient/RCONClient.sln
@@ -1,4 +1,4 @@
-
+
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Express 2013 for Windows Desktop
VisualStudioVersion = 12.0.31101.0
diff --git a/dev-docs/js/ValueMap.js b/dev-docs/js/ValueMap.js
index 31ddba27e..729a425f4 100644
--- a/dev-docs/js/ValueMap.js
+++ b/dev-docs/js/ValueMap.js
@@ -1,4 +1,4 @@
-
+
const g_DistanceBetweenSquares = 0;//.01;
const g_Colors = [
"#0000FF",
diff --git a/lib/mbedtls.cmake b/lib/mbedtls.cmake
index c33ed8959..2bf45fa23 100644
--- a/lib/mbedtls.cmake
+++ b/lib/mbedtls.cmake
@@ -1,4 +1,4 @@
-
+
# This script includes PolarSSL, if not already included.
# It is needed for when multiple projects reference PolarSSL.
diff --git a/src/Bindings/ManualBindings.cpp b/src/Bindings/ManualBindings.cpp
index 5f8a3507d..becaa872a 100644
--- a/src/Bindings/ManualBindings.cpp
+++ b/src/Bindings/ManualBindings.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "ManualBindings.h"
diff --git a/src/Bindings/ManualBindings.h b/src/Bindings/ManualBindings.h
index 0272e993b..cfdca7597 100644
--- a/src/Bindings/ManualBindings.h
+++ b/src/Bindings/ManualBindings.h
@@ -1,4 +1,4 @@
-
+
// ManualBindings.h
// Declares the cManualBindings class used as a namespace for functions exported to the Lua API manually
diff --git a/src/Bindings/ManualBindings_World.cpp b/src/Bindings/ManualBindings_World.cpp
index 826439e3f..3145da9e4 100644
--- a/src/Bindings/ManualBindings_World.cpp
+++ b/src/Bindings/ManualBindings_World.cpp
@@ -1,4 +1,4 @@
-
+
// ManualBindings_World.cpp
// Implements the manual Lua API bindings for the cWorld class
diff --git a/src/BlockEntities/BeaconEntity.cpp b/src/BlockEntities/BeaconEntity.cpp
index 1d088a56f..763fc6d20 100644
--- a/src/BlockEntities/BeaconEntity.cpp
+++ b/src/BlockEntities/BeaconEntity.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "BeaconEntity.h"
diff --git a/src/BlockEntities/MobSpawnerEntity.cpp b/src/BlockEntities/MobSpawnerEntity.cpp
index 8a4cc4d38..90534216a 100644
--- a/src/BlockEntities/MobSpawnerEntity.cpp
+++ b/src/BlockEntities/MobSpawnerEntity.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "MobSpawnerEntity.h"
diff --git a/src/Blocks/BlockBed.cpp b/src/Blocks/BlockBed.cpp
index 0032ec079..d9199846a 100644
--- a/src/Blocks/BlockBed.cpp
+++ b/src/Blocks/BlockBed.cpp
@@ -1,4 +1,4 @@
-
+
// BlockBed.cpp
#include "Globals.h"
diff --git a/src/Blocks/WorldInterface.h b/src/Blocks/WorldInterface.h
index 1619a8fce..19c520ece 100644
--- a/src/Blocks/WorldInterface.h
+++ b/src/Blocks/WorldInterface.h
@@ -1,4 +1,4 @@
-
+
#pragma once
#include "FunctionRef.h"
diff --git a/src/ChunkSender.h b/src/ChunkSender.h
index 5263e4df5..a17dfcab2 100644
--- a/src/ChunkSender.h
+++ b/src/ChunkSender.h
@@ -1,4 +1,4 @@
-
+
// ChunkSender.h
// Interfaces to the cChunkSender class representing the thread that waits for chunks becoming ready (loaded / generated) and sends them to clients
diff --git a/src/ClientHandle.cpp b/src/ClientHandle.cpp
index 6a3e47d94..e3bba6b08 100644
--- a/src/ClientHandle.cpp
+++ b/src/ClientHandle.cpp
@@ -1,4 +1,4 @@
-#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
+#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "ClientHandle.h"
#include "Server.h"
diff --git a/src/Cuberite.vcxproj.user b/src/Cuberite.vcxproj.user
index 7ebd19d9b..468689da9 100644
--- a/src/Cuberite.vcxproj.user
+++ b/src/Cuberite.vcxproj.user
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8"?>
+<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LocalDebuggerWorkingDirectory>../Server</LocalDebuggerWorkingDirectory>
diff --git a/src/Entities/LeashKnot.cpp b/src/Entities/LeashKnot.cpp
index 51002531d..c251f9e9d 100644
--- a/src/Entities/LeashKnot.cpp
+++ b/src/Entities/LeashKnot.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "LeashKnot.h"
diff --git a/src/Entities/Pawn.cpp b/src/Entities/Pawn.cpp
index a116f97e3..b5769f430 100644
--- a/src/Entities/Pawn.cpp
+++ b/src/Entities/Pawn.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "Pawn.h"
diff --git a/src/HTTP/HTTPServer.cpp b/src/HTTP/HTTPServer.cpp
index 24c09aa38..aff2331a6 100644
--- a/src/HTTP/HTTPServer.cpp
+++ b/src/HTTP/HTTPServer.cpp
@@ -1,4 +1,4 @@
-
+
// HTTPServer.cpp
// Implements the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing
diff --git a/src/HTTP/HTTPServer.h b/src/HTTP/HTTPServer.h
index a2d5d84fc..a70d41069 100644
--- a/src/HTTP/HTTPServer.h
+++ b/src/HTTP/HTTPServer.h
@@ -1,4 +1,4 @@
-
+
// HTTPServer.h
// Declares the cHTTPServer class representing a HTTP webserver that uses cListenThread and cSocketThreads for processing
diff --git a/src/HTTP/SslHTTPServerConnection.cpp b/src/HTTP/SslHTTPServerConnection.cpp
index 99fb1b956..20554708a 100644
--- a/src/HTTP/SslHTTPServerConnection.cpp
+++ b/src/HTTP/SslHTTPServerConnection.cpp
@@ -1,4 +1,4 @@
-
+
// SslHTTPConnection.cpp
// Implements the cSslHTTPServerConnection class representing a HTTP connection made over a SSL link
diff --git a/src/HTTP/SslHTTPServerConnection.h b/src/HTTP/SslHTTPServerConnection.h
index 894a2cc4a..6fd3ff309 100644
--- a/src/HTTP/SslHTTPServerConnection.h
+++ b/src/HTTP/SslHTTPServerConnection.h
@@ -1,4 +1,4 @@
-
+
// SslHTTPServerConnection.h
// Declares the cSslHTTPServerConnection class representing a HTTP connection made over an SSL link
diff --git a/src/Items/ItemBow.h b/src/Items/ItemBow.h
index 67ea9f16f..71f5bc378 100644
--- a/src/Items/ItemBow.h
+++ b/src/Items/ItemBow.h
@@ -1,4 +1,4 @@
-
+
// ItemBow.h
// Declares the cItemBowHandler class representing the itemhandler for bows
diff --git a/src/OSSupport/TCPLinkImpl.cpp b/src/OSSupport/TCPLinkImpl.cpp
index 4aba89e5c..496e264be 100644
--- a/src/OSSupport/TCPLinkImpl.cpp
+++ b/src/OSSupport/TCPLinkImpl.cpp
@@ -1,4 +1,4 @@
-
+
// TCPLinkImpl.cpp
// Implements the cTCPLinkImpl class implementing the TCP link functionality
diff --git a/src/Protocol/MojangAPI.cpp b/src/Protocol/MojangAPI.cpp
index 0b14d1cac..5aa7f58db 100644
--- a/src/Protocol/MojangAPI.cpp
+++ b/src/Protocol/MojangAPI.cpp
@@ -1,4 +1,4 @@
-
+
// MojangAPI.cpp
// Implements the cMojangAPI class representing the various API points provided by Mojang's webservices, and a cache for their results
diff --git a/src/Root.cpp b/src/Root.cpp
index ad54a075c..39ba1acc5 100644
--- a/src/Root.cpp
+++ b/src/Root.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "Root.h"
diff --git a/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h b/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h
index 80e55faec..ea0eaa900 100644
--- a/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h
+++ b/src/Simulator/IncrementalRedstoneSimulator/TrappedChestHandler.h
@@ -1,4 +1,4 @@
-
+
#pragma once
#include "RedstoneHandler.h"
diff --git a/src/World.cpp b/src/World.cpp
index 086596eb3..11c6d28a3 100644
--- a/src/World.cpp
+++ b/src/World.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h" // NOTE: MSVC stupidness requires this to be the same across all modules
#include "World.h"
diff --git a/src/WorldStorage/FireworksSerializer.cpp b/src/WorldStorage/FireworksSerializer.cpp
index 0398f4da8..91ef35544 100644
--- a/src/WorldStorage/FireworksSerializer.cpp
+++ b/src/WorldStorage/FireworksSerializer.cpp
@@ -1,4 +1,4 @@
-
+
#include "Globals.h"
#include "FireworksSerializer.h"
#include "WorldStorage/FastNBT.h"
diff --git a/src/WorldStorage/NBTChunkSerializer.h b/src/WorldStorage/NBTChunkSerializer.h
index 50d98a518..101384739 100644
--- a/src/WorldStorage/NBTChunkSerializer.h
+++ b/src/WorldStorage/NBTChunkSerializer.h
@@ -1,4 +1,4 @@
-
+
// NBTChunkSerializer.h
// Declares the cNBTChunkSerializer class that is used for saving individual chunks into NBT format used by Anvil
diff --git a/src/mbedTLS++/AesCfb128Decryptor.cpp b/src/mbedTLS++/AesCfb128Decryptor.cpp
index 78a7ab9c5..0a5896e52 100644
--- a/src/mbedTLS++/AesCfb128Decryptor.cpp
+++ b/src/mbedTLS++/AesCfb128Decryptor.cpp
@@ -1,4 +1,4 @@
-
+
// AesCfb128Decryptor.cpp
// Implements the cAesCfb128Decryptor class decrypting data using AES CFB-128
diff --git a/src/mbedTLS++/AesCfb128Decryptor.h b/src/mbedTLS++/AesCfb128Decryptor.h
index 54c5536ea..99d479381 100644
--- a/src/mbedTLS++/AesCfb128Decryptor.h
+++ b/src/mbedTLS++/AesCfb128Decryptor.h
@@ -1,4 +1,4 @@
-
+
// AesCfb128Decryptor.h
// Declares the cAesCfb128Decryptor class decrypting data using AES CFB-128
diff --git a/src/mbedTLS++/AesCfb128Encryptor.cpp b/src/mbedTLS++/AesCfb128Encryptor.cpp
index 11582fc19..a7b423a77 100644
--- a/src/mbedTLS++/AesCfb128Encryptor.cpp
+++ b/src/mbedTLS++/AesCfb128Encryptor.cpp
@@ -1,4 +1,4 @@
-
+
// AesCfb128Encryptor.cpp
// Implements the cAesCfb128Encryptor class encrypting data using AES CFB-128
diff --git a/src/mbedTLS++/AesCfb128Encryptor.h b/src/mbedTLS++/AesCfb128Encryptor.h
index 6bfa6b5c9..8048e2d61 100644
--- a/src/mbedTLS++/AesCfb128Encryptor.h
+++ b/src/mbedTLS++/AesCfb128Encryptor.h
@@ -1,4 +1,4 @@
-
+
// AesCfb128Encryptor.h
// Declares the cAesCfb128Encryptor class encrypting data using AES CFB-128
diff --git a/src/mbedTLS++/BlockingSslClientSocket.cpp b/src/mbedTLS++/BlockingSslClientSocket.cpp
index 6f765f607..9267975cb 100644
--- a/src/mbedTLS++/BlockingSslClientSocket.cpp
+++ b/src/mbedTLS++/BlockingSslClientSocket.cpp
@@ -1,4 +1,4 @@
-
+
// BlockingSslClientSocket.cpp
// Implements the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it
diff --git a/src/mbedTLS++/BlockingSslClientSocket.h b/src/mbedTLS++/BlockingSslClientSocket.h
index 24ee32680..32c606535 100644
--- a/src/mbedTLS++/BlockingSslClientSocket.h
+++ b/src/mbedTLS++/BlockingSslClientSocket.h
@@ -1,4 +1,4 @@
-
+
// BlockingSslClientSocket.h
// Declares the cBlockingSslClientSocket class representing a blocking TCP socket with client SSL encryption over it
diff --git a/src/mbedTLS++/BufferedSslContext.cpp b/src/mbedTLS++/BufferedSslContext.cpp
index 5cdf04323..88b66c592 100644
--- a/src/mbedTLS++/BufferedSslContext.cpp
+++ b/src/mbedTLS++/BufferedSslContext.cpp
@@ -1,4 +1,4 @@
-
+
// BufferedSslContext.cpp
// Implements the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer
diff --git a/src/mbedTLS++/BufferedSslContext.h b/src/mbedTLS++/BufferedSslContext.h
index 9c9dd8f73..6facb5915 100644
--- a/src/mbedTLS++/BufferedSslContext.h
+++ b/src/mbedTLS++/BufferedSslContext.h
@@ -1,4 +1,4 @@
-
+
// BufferedSslContext.h
// Declares the cBufferedSslContext class representing a SSL context with the SSL peer data backed by a cByteBuffer
diff --git a/src/mbedTLS++/CallbackSslContext.cpp b/src/mbedTLS++/CallbackSslContext.cpp
index 26bcec2ff..b3e08a2cd 100644
--- a/src/mbedTLS++/CallbackSslContext.cpp
+++ b/src/mbedTLS++/CallbackSslContext.cpp
@@ -1,4 +1,4 @@
-
+
// CallbackSslContext.cpp
// Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data
diff --git a/src/mbedTLS++/CallbackSslContext.h b/src/mbedTLS++/CallbackSslContext.h
index da1abb707..abf4eefd7 100644
--- a/src/mbedTLS++/CallbackSslContext.h
+++ b/src/mbedTLS++/CallbackSslContext.h
@@ -1,4 +1,4 @@
-
+
// CallbackSslContext.h
// Declares the cCallbackSslContext class representing a SSL context wrapper that uses callbacks to read and write SSL peer data
diff --git a/src/mbedTLS++/CryptoKey.cpp b/src/mbedTLS++/CryptoKey.cpp
index 4ebb0f300..d9069e4e6 100644
--- a/src/mbedTLS++/CryptoKey.cpp
+++ b/src/mbedTLS++/CryptoKey.cpp
@@ -1,4 +1,4 @@
-
+
// CryptoKey.cpp
// Implements the cCryptoKey class representing a RSA public key in mbedTLS
diff --git a/src/mbedTLS++/CryptoKey.h b/src/mbedTLS++/CryptoKey.h
index 1a74090ac..5615d57d0 100644
--- a/src/mbedTLS++/CryptoKey.h
+++ b/src/mbedTLS++/CryptoKey.h
@@ -1,4 +1,4 @@
-
+
// CryptoKey.h
// Declares the cCryptoKey class representing a RSA public key in mbedTLS
diff --git a/src/mbedTLS++/CtrDrbgContext.cpp b/src/mbedTLS++/CtrDrbgContext.cpp
index bd4a55000..a2b9ee2dc 100644
--- a/src/mbedTLS++/CtrDrbgContext.cpp
+++ b/src/mbedTLS++/CtrDrbgContext.cpp
@@ -1,4 +1,4 @@
-
+
// CtrDrbgContext.cpp
// Implements the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS
diff --git a/src/mbedTLS++/CtrDrbgContext.h b/src/mbedTLS++/CtrDrbgContext.h
index 21d786c2e..fe67504a7 100644
--- a/src/mbedTLS++/CtrDrbgContext.h
+++ b/src/mbedTLS++/CtrDrbgContext.h
@@ -1,4 +1,4 @@
-
+
// CtrDrbgContext.h
// Declares the cCtrDrbgContext class representing a wrapper over CTR-DRBG implementation in mbedTLS
diff --git a/src/mbedTLS++/EntropyContext.cpp b/src/mbedTLS++/EntropyContext.cpp
index aea056f4e..a5cdcb89e 100644
--- a/src/mbedTLS++/EntropyContext.cpp
+++ b/src/mbedTLS++/EntropyContext.cpp
@@ -1,4 +1,4 @@
-
+
// EntropyContext.cpp
// Implements the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS
diff --git a/src/mbedTLS++/EntropyContext.h b/src/mbedTLS++/EntropyContext.h
index 37b6f120e..1c1695340 100644
--- a/src/mbedTLS++/EntropyContext.h
+++ b/src/mbedTLS++/EntropyContext.h
@@ -1,4 +1,4 @@
-
+
// EntropyContext.h
// Declares the cEntropyContext class representing a wrapper over entropy contexts in mbedTLS
diff --git a/src/mbedTLS++/RsaPrivateKey.cpp b/src/mbedTLS++/RsaPrivateKey.cpp
index 3dfb3bac3..94c7b38eb 100644
--- a/src/mbedTLS++/RsaPrivateKey.cpp
+++ b/src/mbedTLS++/RsaPrivateKey.cpp
@@ -1,4 +1,4 @@
-
+
// RsaPrivateKey.cpp
#include "Globals.h"
diff --git a/src/mbedTLS++/RsaPrivateKey.h b/src/mbedTLS++/RsaPrivateKey.h
index 7be0152b7..63e648b60 100644
--- a/src/mbedTLS++/RsaPrivateKey.h
+++ b/src/mbedTLS++/RsaPrivateKey.h
@@ -1,4 +1,4 @@
-
+
// RsaPrivateKey.h
// Declares the cRsaPrivateKey class representing a private key for RSA operations.
diff --git a/src/mbedTLS++/Sha1Checksum.cpp b/src/mbedTLS++/Sha1Checksum.cpp
index 9c82d92fe..9671b8d2b 100644
--- a/src/mbedTLS++/Sha1Checksum.cpp
+++ b/src/mbedTLS++/Sha1Checksum.cpp
@@ -1,4 +1,4 @@
-
+
// Sha1Checksum.cpp
// Declares the cSha1Checksum class representing the SHA-1 checksum calculator
diff --git a/src/mbedTLS++/Sha1Checksum.h b/src/mbedTLS++/Sha1Checksum.h
index 43180e531..f85f5e8b5 100644
--- a/src/mbedTLS++/Sha1Checksum.h
+++ b/src/mbedTLS++/Sha1Checksum.h
@@ -1,4 +1,4 @@
-
+
// Sha1Checksum.h
// Declares the cSha1Checksum class representing the SHA-1 checksum calculator
diff --git a/src/mbedTLS++/SslContext.cpp b/src/mbedTLS++/SslContext.cpp
index e86da3fd2..679362c7a 100644
--- a/src/mbedTLS++/SslContext.cpp
+++ b/src/mbedTLS++/SslContext.cpp
@@ -1,4 +1,4 @@
-
+
// SslContext.cpp
// Implements the cSslContext class that holds everything a single SSL context needs to function
diff --git a/src/mbedTLS++/SslContext.h b/src/mbedTLS++/SslContext.h
index c51a9f149..d015b6587 100644
--- a/src/mbedTLS++/SslContext.h
+++ b/src/mbedTLS++/SslContext.h
@@ -1,4 +1,4 @@
-
+
// SslContext.h
// Declares the cSslContext class that holds everything a single SSL context needs to function
diff --git a/src/mbedTLS++/X509Cert.cpp b/src/mbedTLS++/X509Cert.cpp
index 1e51dd2b7..4dd998f00 100644
--- a/src/mbedTLS++/X509Cert.cpp
+++ b/src/mbedTLS++/X509Cert.cpp
@@ -1,4 +1,4 @@
-
+
// X509Cert.cpp
// Implements the cX509Cert class representing a wrapper over X509 certs in mbedTLS
diff --git a/src/mbedTLS++/X509Cert.h b/src/mbedTLS++/X509Cert.h
index 4234308ff..126b7387a 100644
--- a/src/mbedTLS++/X509Cert.h
+++ b/src/mbedTLS++/X509Cert.h
@@ -1,4 +1,4 @@
-
+
// X509Cert.h
// Declares the cX509Cert class representing a wrapper over X509 certs in mbedTLS
diff --git a/tests/HTTP/CMakeLists.txt b/tests/HTTP/CMakeLists.txt
index 32f95a339..55074958e 100644
--- a/tests/HTTP/CMakeLists.txt
+++ b/tests/HTTP/CMakeLists.txt
@@ -1,4 +1,4 @@
-enable_testing()
+enable_testing()
include_directories(${CMAKE_SOURCE_DIR}/src/)
include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/libevent/include)
diff --git a/tests/Network/CMakeLists.txt b/tests/Network/CMakeLists.txt
index 60c40cdf4..aa8c24c4e 100644
--- a/tests/Network/CMakeLists.txt
+++ b/tests/Network/CMakeLists.txt
@@ -1,4 +1,4 @@
-enable_testing()
+enable_testing()
include_directories(${CMAKE_SOURCE_DIR}/src/)
include_directories(SYSTEM ${CMAKE_SOURCE_DIR}/lib/libevent/include)