I`m trying to send HTTP response to browser
char *reply = \"HTTP/1.1 200 OK\\n\" \"Date: Thu, 19 Feb 2009 12:27:04 GMT\\n\" \"Server: Apache/2.2.3\\n\" \"La
sizeof(reply) evaluates to the size of a char *, aka size of a pointer. Use strlen.
sizeof(reply)
char *
strlen
send(client, reply, strlen(reply), 0);