Searched refs:splitbyte (Results 1 – 1 of 1) sorted by relevance
549 private int splitbyte; field in NanoHTTPD.HTTPSession772 this.splitbyte = 0; in execute()792 this.splitbyte = findHeaderEnd(buf, this.rlen); in execute()793 if (this.splitbyte > 0) { in execute()799 if (this.splitbyte < this.rlen) { in execute()801 this.inputStream.skip(this.splitbyte); in execute()884 int splitbyte = 0; in findHeaderEnd() local885 while (splitbyte + 1 < rlen) { in findHeaderEnd()888 …if (buf[splitbyte] == '\r' && buf[splitbyte + 1] == '\n' && splitbyte + 3 < rlen && buf[splitbyte … in findHeaderEnd()889 return splitbyte + 4; in findHeaderEnd()[all …]