I get the warning: passing argument 2 of ‘accept’ from incompatible pointer type [-Wincompatible-pointer-types]
Why am I getting this error?
if(s = accept(ls, &client_address, &client_address_len)<0);
{
perror("Error: accepting failed!!");
exit(1);
}
client_address
defined? - dbush