Searched defs:splitbyte (Results 1 - 1 of 1) sorted by relevance

/external/nanohttpd/core/src/main/java/fi/iki/elonen/
H A DNanoHTTPD.java549 private int splitbyte; field in class:NanoHTTPD.HTTPSession
772 this.splitbyte = 0;
792 this.splitbyte = findHeaderEnd(buf, this.rlen);
793 if (this.splitbyte > 0) {
799 if (this.splitbyte < this.rlen) {
801 this.inputStream.skip(this.splitbyte);
884 int splitbyte = 0;
885 while (splitbyte + 1 < rlen) {
888 if (buf[splitbyte] == '\r' && buf[splitbyte
[all...]

Completed in 286 milliseconds