diff --git a/src/helpers/helpers.h b/src/helpers/client_helpers.h
similarity index 93%
rename from src/helpers/helpers.h
rename to src/helpers/client_helpers.h
index 785f0415..d3e8fc5f 100644
--- a/src/helpers/helpers.h
+++ b/src/helpers/client_helpers.h
@@ -7,8 +7,8 @@
  * file that was distributed with this source code.
  **/
 
-#ifndef HELPERS_H
-#define HELPERS_H
+#ifndef CLIENT_HELPERS_H
+#define CLIENT_HELPERS_H
 
 #include <cstring>
 #include <string>
diff --git a/src/http/iot/http.cpp b/src/http/iot/http.cpp
index 40506c33..1d6f526d 100644
--- a/src/http/iot/http.cpp
+++ b/src/http/iot/http.cpp
@@ -1,7 +1,7 @@
 #include "http/http.h"
 #include <memory>
 #include <vector>
-#include "helpers/helpers.h"
+#include "helpers/client_helpers.h"
 
 #ifdef ESP8266
 #include <ESP8266HTTPClient.h>
diff --git a/src/http/iot/main.cpp b/src/http/iot/main.cpp
index d11e8c99..dcae0526 100644
--- a/src/http/iot/main.cpp
+++ b/src/http/iot/main.cpp
@@ -1,4 +1,4 @@
-#include "helpers/helpers.h"
+#include "helpers/client_helpers.h"
 
 #if (defined PLATFORMIO && !defined UNIT_TEST)
 
diff --git a/src/http/os/http.cpp b/src/http/os/http.cpp
index a65dd92b..28732704 100644
--- a/src/http/os/http.cpp
+++ b/src/http/os/http.cpp
@@ -1,5 +1,5 @@
 #include "http/http.h"
-#include "helpers/helpers.h"
+#include "helpers/client_helpers.h"
 
 #ifndef USE_IOT