Minor formatting fix
This commit is contained in:
parent
d11905f837
commit
cc21e5d205
1 changed files with 3 additions and 1 deletions
|
@ -73,7 +73,9 @@ int main(int argc, char **argv) {
|
||||||
read_ret = read(connection_fd, recv_buf, C_SIMPLE_HTTP_RECV_BUF_SIZE);
|
read_ret = read(connection_fd, recv_buf, C_SIMPLE_HTTP_RECV_BUF_SIZE);
|
||||||
// DEBUG print received buf.
|
// DEBUG print received buf.
|
||||||
// TODO Validate request and send response.
|
// TODO Validate request and send response.
|
||||||
for (unsigned int idx = 0; idx < C_SIMPLE_HTTP_RECV_BUF_SIZE && idx < read_ret; ++idx) {
|
for (unsigned int idx = 0;
|
||||||
|
idx < C_SIMPLE_HTTP_RECV_BUF_SIZE && idx < read_ret;
|
||||||
|
++idx) {
|
||||||
if (recv_buf[idx] >= 0x20 && recv_buf[idx] <= 0x7E) {
|
if (recv_buf[idx] >= 0x20 && recv_buf[idx] <= 0x7E) {
|
||||||
printf("%c", recv_buf[idx]);
|
printf("%c", recv_buf[idx]);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue