Skip to content

Commit 65d8a98

Browse files
committed
Renamed HttpClient files to Http_Client
1 parent c014e0c commit 65d8a98

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/ArduinoHttpClient.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#ifndef ArduinoHttpClient_h
66
#define ArduinoHttpClient_h
77

8-
#include "HttpClient.h"
8+
#include "Http_Client.h"
99
#include "WebSocketClient.h"
1010
#include "URLEncoder.h"
1111

src/HttpClient.cpp renamed to src/Http_Client.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// (c) Copyright 2010-2011 MCQN Ltd
33
// Released under Apache License, version 2.0
44

5-
#include "HttpClient.h"
5+
#include "Http_Client.h"
66
#include "b64.h"
77

88
// Initialize constants

src/HttpClient.h renamed to src/Http_Client.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
// (c) Copyright MCQN Ltd. 2010-2012
33
// Released under Apache License, version 2.0
44

5-
#ifndef HttpClient_h
6-
#define HttpClient_h
5+
#ifndef Http_Client_h
6+
#define Http_Client_h
77

88
#include <Arduino.h>
99
#include <IPAddress.h>

src/WebSocketClient.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
#include <Arduino.h>
88

9-
#include "HttpClient.h"
9+
#include "Http_Client.h"
1010

1111
static const int TYPE_CONTINUATION = 0x0;
1212
static const int TYPE_TEXT = 0x1;

0 commit comments

Comments
 (0)