1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-07-11 06:41:44 +03:00

Disabled proxy capability as it introduced a dependency on Ethernet, which meant that it didn't work properly with a WiFi shield

This commit is contained in:
amcewen
2012-08-13 17:07:57 +01:00
parent 44d790b8a6
commit c1405676f4
2 changed files with 15 additions and 2 deletions

View File

@ -4,7 +4,9 @@
#include "HttpClient.h"
#include "b64.h"
#ifdef PROXY_ENABLED // currently disabled as introduces dependency on Dns.h in Ethernet
#include <Dns.h>
#endif
#include <string.h>
#include <ctype.h>
@ -16,6 +18,7 @@ const char* HttpClient::kPut = "PUT";
const char* HttpClient::kDelete = "DELETE";
const char* HttpClient::kContentLengthPrefix = "Content-Length: ";
#ifdef PROXY_ENABLED // currently disabled as introduces dependency on Dns.h in Ethernet
HttpClient::HttpClient(Client& aClient, const char* aProxy, uint16_t aProxyPort)
: iClient(&aClient), iProxyPort(aProxyPort)
{
@ -30,6 +33,13 @@ HttpClient::HttpClient(Client& aClient, const char* aProxy, uint16_t aProxyPort)
(void)dns.getHostByName(aProxy, iProxyAddress);
}
}
#else
HttpClient::HttpClient(Client& aClient)
: iClient(&aClient)
{
resetState();
}
#endif
void HttpClient::resetState()
{
@ -162,7 +172,7 @@ int HttpClient::sendInitialHeaders(const char* aServerName, IPAddress aServerIP,
}
}
iClient->print(aURLPath);
iClient->println(" HTTP/1.0");
iClient->println(" HTTP/1.1");
// The host header, if required
if (aServerName)
{