Fix Includes and Headers
This commit is contained in:
@@ -4,5 +4,3 @@
|
|||||||
.*.swp
|
.*.swp
|
||||||
.AppleDouble
|
.AppleDouble
|
||||||
lib
|
lib
|
||||||
Libraries
|
|
||||||
fixPermissions.sh
|
|
||||||
|
|||||||
Symlink
+1
@@ -0,0 +1 @@
|
|||||||
|
../../Logging
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
|
|
||||||
#include "Ipv4Header.h"
|
#include "Ipv4Header.h"
|
||||||
#include "IcmpHeader.h"
|
#include "IcmpHeader.h"
|
||||||
#include "asio.hpp"
|
#include <asio.hpp>
|
||||||
#include <condition_variable>
|
#include <condition_variable>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#ifndef ICMPHEADER_H
|
#ifndef NETWORK_ICMPHEADER_H
|
||||||
#define ICMPHEADER_H
|
#define NETWORK_ICMPHEADER_H
|
||||||
|
|
||||||
#include "asio.hpp"
|
#include <asio.hpp>
|
||||||
#include <istream>
|
#include <istream>
|
||||||
|
|
||||||
|
|
||||||
@@ -84,4 +84,4 @@ void ComputeChecksum(IcmpHeader& header,
|
|||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
} // namespace Network
|
} // namespace Network
|
||||||
|
|
||||||
#endif // ICMPHEADER_H
|
#endif // NETWORK_ICMPHEADER_H
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#ifndef IPV4HEADER_H
|
#ifndef NETWORK_IPV4HEADER_H
|
||||||
#define IPV4HEADER_H
|
#define NETWORK_IPV4HEADER_H
|
||||||
|
|
||||||
#include "asio.hpp"
|
#include <asio.hpp>
|
||||||
#include <istream>
|
#include <istream>
|
||||||
|
|
||||||
|
|
||||||
@@ -60,4 +60,4 @@ private:
|
|||||||
} // namespace Internal
|
} // namespace Internal
|
||||||
} // namespace Network
|
} // namespace Network
|
||||||
|
|
||||||
#endif // IPV4HEADER_H
|
#endif // HEADER_IPV4HEADER_H
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#include "UdpClientImpl.h"
|
#include "UdpClientImpl.h"
|
||||||
#include "Logging.h"
|
#include <Logging.h>
|
||||||
|
|
||||||
|
|
||||||
namespace Network {
|
namespace Network {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#ifndef NETWORK_UDPCLIENTIMPL_H
|
#ifndef NETWORK_UDPCLIENTIMPL_H
|
||||||
#define NETWORK_UDPCLIENTIMPL_H
|
#define NETWORK_UDPCLIENTIMPL_H
|
||||||
|
|
||||||
#include "asio.hpp"
|
#include <asio.hpp>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|||||||
Reference in New Issue
Block a user