1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00

fix setsockopt

This commit is contained in:
lxsang 2020-12-28 13:49:44 +01:00
parent 02d48fb659
commit 7e0232f299
2 changed files with 1 additions and 2 deletions

Binary file not shown.

View File

@ -673,7 +673,6 @@ int startup(unsigned *port)
{
int httpd = 0;
struct sockaddr_in name;
uint8_t on = 1;
httpd = socket(PF_INET, SOCK_STREAM, 0);
if (httpd == -1)
{
@ -681,7 +680,7 @@ int startup(unsigned *port)
return -1;
}
if (setsockopt(httpd, SOL_SOCKET, SO_REUSEADDR, (char *)&on, sizeof(on)) == -1)
if (setsockopt(httpd, SOL_SOCKET, SO_REUSEADDR, &(int){1}, sizeof(int)) == -1)
{
ERROR("Unable to set reuse address on port %d - setsockopt: %s", *port, strerror(errno));
}