I am writing a server application that will provide a service on an ephemeral port that I only want accessible on the loopback interface. In order to do this, I am writing code like the following:

struct sockaddr_in bind_addr;

memset(&bind_addr,0,sizeof(bind_addr));
bind_addr.sin_family = AF_INET;
bind_addr.sin_port = 0;
bind_addr.sin_addr.s_addr = htonl(inet_addr("127.0.0.1"));
rcd = ::bind(
   socket_handle,
   reinterpret_cast<struct sockaddr *>(&bind_addr),
   sizeof(bind_addr));

The return value for this call to bind() is -1 and the value of errno is 99 (Cannot assign requested address). Is this failing because inet_addr() already returns its result in network order or is there some other reason?

link|improve this question

1  
I should have done some more experiments before posting. It would appear that inet_addr() already returns the address in network order. – Jon Trauntvein Jan 7 '11 at 22:28
3  
instead of making experiments, you could read the man page. It says that inet_addr doesn't do any decent error checking, and that there is already a constant defined in netinet/in.h called INADDR_LOOPBACK that is exactly what you want. – BatchyX Jan 7 '11 at 22:39
@BatchyX: That constant is nonstandard (not specified in POSIX). – R.. Jan 8 '11 at 0:54
@R.: it is nonstandart, but it exists on BSD, Linux, Mac OSX, Solaris, and Windows, and only the "linux" tag was set by the asker. – BatchyX Jan 8 '11 at 8:16
feedback

2 Answers

up vote 3 down vote accepted

Is this failing because inet_addr() already returns its result in network order

Yes.

So remove the htonl call.

link|improve this answer
1  
INADDR_LOOPBACK is a nonstandard extension. – R.. Jan 8 '11 at 0:57
feedback

inet_addr should be avoided, for there is a much saner method of constructing struct sockaddrs (which means it also obsoletes gethostby*):

#include <netdb.h>

/* Error checking omitted for brevity */
struct addrinfo hints = {.ai_flags = AI_PASSIVE};
struct addrinfo *res;
getaddrinfo("::1", NULL, &hints, &res); /* or 127.0.0.1 if you are 60+ */
bind(fd, res->ai_addr, res->ai_addrlen);
freeaddrinfo(res);
link|improve this answer
+1 for avoiding inet_addr – Sam Miller Jan 8 '11 at 0:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.