Fix Includes and Headers

This commit is contained in:
2020-02-24 20:46:20 +01:00
parent bf2f59a0c1
commit f93b7ce8b1
7 changed files with 12 additions and 13 deletions
+1 -1
View File
@@ -3,7 +3,7 @@
#include "Ipv4Header.h"
#include "IcmpHeader.h"
#include "asio.hpp"
#include <asio.hpp>
#include <condition_variable>
#include <functional>
#include <mutex>
+4 -4
View File
@@ -1,7 +1,7 @@
#ifndef ICMPHEADER_H
#define ICMPHEADER_H
#ifndef NETWORK_ICMPHEADER_H
#define NETWORK_ICMPHEADER_H
#include "asio.hpp"
#include <asio.hpp>
#include <istream>
@@ -84,4 +84,4 @@ void ComputeChecksum(IcmpHeader& header,
} // namespace Internal
} // namespace Network
#endif // ICMPHEADER_H
#endif // NETWORK_ICMPHEADER_H
+4 -4
View File
@@ -1,7 +1,7 @@
#ifndef IPV4HEADER_H
#define IPV4HEADER_H
#ifndef NETWORK_IPV4HEADER_H
#define NETWORK_IPV4HEADER_H
#include "asio.hpp"
#include <asio.hpp>
#include <istream>
@@ -60,4 +60,4 @@ private:
} // namespace Internal
} // namespace Network
#endif // IPV4HEADER_H
#endif // HEADER_IPV4HEADER_H
+1 -1
View File
@@ -1,5 +1,5 @@
#include "UdpClientImpl.h"
#include "Logging.h"
#include <Logging.h>
namespace Network {
+1 -1
View File
@@ -1,7 +1,7 @@
#ifndef NETWORK_UDPCLIENTIMPL_H
#define NETWORK_UDPCLIENTIMPL_H
#include "asio.hpp"
#include <asio.hpp>
#include <functional>
#include <string>
#include <thread>