Skip to content

Various updates #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 27 commits into from
Jun 21, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
bb9bd9b
Rename to ArduinoHttpClient, and other metadata updates
sandeepmistry Jun 17, 2016
e057c07
Add ArduinoHttpClient.h
sandeepmistry Jun 17, 2016
b72b705
Update example to use WiFi101
sandeepmistry Jun 17, 2016
ad9bd94
Wrap proxy member var declarations in #ifdef
sandeepmistry Jun 17, 2016
e3a6c20
Remove proxy support (for now)
sandeepmistry Jun 17, 2016
0030d41
Make server name/address and port constructor arguments
sandeepmistry Jun 17, 2016
3beefd9
Add support for String parameter types for host and URL path
sandeepmistry Jun 17, 2016
777b561
Make white space consistent
sandeepmistry Jun 17, 2016
6251547
Remove unused code
sandeepmistry Jun 17, 2016
9ab55ef
New API's to read header name and value as String's
sandeepmistry Jun 17, 2016
33804d4
Add support for String parameters to sendHeader and sendHeader
sandeepmistry Jun 17, 2016
bfedff8
Add connection keep alive support
sandeepmistry Jun 17, 2016
4b6f4df
Add check for bodyLen in read loop
sandeepmistry Jun 17, 2016
2551186
Make skipResponseHeaders() optional, if contentLength() is called first
sandeepmistry Jun 17, 2016
7ee216f
Use http.endOfBodyReached() in example instead of tracking body len
sandeepmistry Jun 17, 2016
343a417
Update header comment
sandeepmistry Jun 17, 2016
c5484da
Update keywords.txt for new API's
sandeepmistry Jun 17, 2016
91ea1fd
Remove installation instructions, update dependencies
sandeepmistry Jun 17, 2016
f12a797
Add connectionKeepAlive to keywords.txt and add comment for it
sandeepmistry Jun 17, 2016
5df9084
Correct some warnings
sandeepmistry Jun 17, 2016
70dc5ee
Remove unimplemented finishRequest from header
sandeepmistry Jun 17, 2016
0bcba91
Move storing of initialState in startRequest to the start
sandeepmistry Jun 17, 2016
8012c8d
Add noDefaultRequestHeaders API to turn off sending default headers
sandeepmistry Jun 17, 2016
9f00784
Move new API definitions down a bit in header
sandeepmistry Jun 17, 2016
94a8723
Make WiFiClient and HttpClient global var in example
sandeepmistry Jun 17, 2016
fc3e6c6
Initial port of examples from RestClient
sandeepmistry Jun 21, 2016
248841e
Add .gitignore
sandeepmistry Jun 21, 2016
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.development
examples/node_test_server/node_modules/
10 changes: 10 additions & 0 deletions ArduinoHttpClient.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
// Library to simplify HTTP fetching on Arduino
// (c) Copyright Arduino. 2016
// Released under Apache License, version 2.0

#ifndef ArduinoHttpClient_h
#define ArduinoHttpClient_h

#include "HttpClient.h"

#endif
Loading