Skip to content

Commit

Permalink
Fix mistake in change to exmaples
Browse files Browse the repository at this point in the history
  • Loading branch information
TMRh20 committed Mar 12, 2015
1 parent 18fb804 commit e185890
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/InteractiveServer/HTML.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static const char main_html_p2[] PROGMEM =
*/
void sendPage(EthernetClient& _client, const char* _pointer, size_t size ){

size_t bufSize = UIP_BUFSIZE;
size_t bufSize = UIP_TCP_MSS;

char buffer[bufSize+1]; // 91 bytes by default

Expand Down
2 changes: 1 addition & 1 deletion examples/SLIP_InteractiveServer/HTML.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ static const char main_html_p2[] PROGMEM =
*/
void sendPage(EthernetClient& _client, const char* _pointer, size_t size ){

size_t bufSize = UIP_BUFSIZE;
size_t bufSize = UIP_TCP_MSS;;

char buffer[bufSize+1]; // 91 bytes by default

Expand Down

0 comments on commit e185890

Please sign in to comment.