inet_ntoa() function causes Segmentation fault error in the following code. Tell me, why, please. And how do I fix it? Thanks a lot!
void ClientAdd ( int clientSocket )
{
sockaddr clientAddress;
socklen_t clientAddressLength;
sockaddr_in* clientAddressInternet;
char* clientHost;
getpeername ( clientSocket , &clientAddress , &clientAddressLength );
clientAddressInternet = (struct sockaddr_in*)&clientAddress;
clientHost = inet_ntoa ( clientAddressInternet->sin_addr );
};
I think it's all about return value of inet_ntoa. But I don't know how how to find out...
PS compiling with g++@debian
clientAddressandclientAddressLengthlike that. Pointers have to point somewhere.getpeernameexpects pointers that point at something, not the uninitialised pointers you have given it. I'm not an expert on socket programming but something like this would be better.sockaddr clientAddress; socklen_t clientAddressLength; getpeername ( clientSocket , &clientAddress , &clientAddressLength );. You see this way I've passed pointers that actually point to something togetpeername. – jahhaj Aug 5 '12 at 22:22getpeername ( clientSocket , &clientAddress , &clientAddressLength );is better still. – jahhaj Aug 5 '12 at 22:33