Correct return values: PROCESSED or CALL_AGAIN

This commit is contained in:
Toon Claes 2014-02-04 15:24:32 +01:00
parent a34d1ec00a
commit 0187fe943a

View File

@ -23,7 +23,7 @@ static int index_html(struct mg_connection *conn) {
}
}
return n < sizeof(buf) ? 1 : 0;
return n < sizeof(buf) ? MG_REQUEST_PROCESSED : MG_REQUEST_CALL_AGAIN;
}
int main(void) {