if (content == null)
return;
// Start to read
final ByteMatch match = ByteMatch.create("Content-Type:", true);
int newlines = 0;
start = 0;
for (; start < content.length; ++start) {
byte b = content[start];
if (match.match(b)) {
// Read the rest of the line
int start = ++this.start;
for (++this.start; this.start < content.length; ++this.start) {
b = content[this.start];
if (b == '\n') {