3#include "AudioLogger.h"
19 virtual int readlnInternal(
Stream& client,
uint8_t* str,
int len,
22 LOGD(
"HttpLineReader %s",
"readlnInternal");
24 for (
int w = 0;
w < 200 && client.available() == 0;
w++) {
28 if (client.available() == 0) {
29 LOGW(
"HttpLineReader %s",
"readlnInternal->no Data");
38 int c = client.read();
56 if (str[
j - 1] ==
'\r') {
75 LOGE(
"Line cut off: %s", str);