diff --git a/features/NetworkSocketAPI/Socket.cpp b/features/NetworkSocketAPI/Socket.cpp index 49b92f4d13..bd9930d849 100644 --- a/features/NetworkSocketAPI/Socket.cpp +++ b/features/NetworkSocketAPI/Socket.cpp @@ -14,7 +14,7 @@ * limitations under the License. */ -#include "Socket.h" +#include "NetworkSocketAPI/Socket.h" Socket::Socket() : _iface(0) diff --git a/features/NetworkSocketAPI/TCPServer.h b/features/NetworkSocketAPI/TCPServer.h index 6c32286216..aaae9070e2 100644 --- a/features/NetworkSocketAPI/TCPServer.h +++ b/features/NetworkSocketAPI/TCPServer.h @@ -17,7 +17,7 @@ #ifndef TCPSERVER_H #define TCPSERVER_H -#include "Socket.h" +#include "NetworkSocketAPI/Socket.h" #include "TCPSocket.h" #include "NetworkStack.h" #include "Semaphore.h" diff --git a/features/NetworkSocketAPI/TCPSocket.h b/features/NetworkSocketAPI/TCPSocket.h index 4f19b60a0b..6b6d91aec5 100644 --- a/features/NetworkSocketAPI/TCPSocket.h +++ b/features/NetworkSocketAPI/TCPSocket.h @@ -17,7 +17,7 @@ #ifndef TCPSOCKET_H #define TCPSOCKET_H -#include "Socket.h" +#include "NetworkSocketAPI/Socket.h" #include "NetworkStack.h" #include "Semaphore.h" diff --git a/features/NetworkSocketAPI/UDPSocket.h b/features/NetworkSocketAPI/UDPSocket.h index 7e3439678e..8db58b9c16 100644 --- a/features/NetworkSocketAPI/UDPSocket.h +++ b/features/NetworkSocketAPI/UDPSocket.h @@ -17,7 +17,7 @@ #ifndef UDPSOCKET_H #define UDPSOCKET_H -#include "Socket.h" +#include "NetworkSocketAPI/Socket.h" #include "NetworkStack.h" #include "Semaphore.h"