I'm writing a Socket library and I'm having some trouble with client sockets that bind to a specific address and port. I'm currently testing my winsock TCP library, although I'm sure there's no reason why I wouldn't have the same problems on *nix. So far everything works fine (if I connect() without calling bind() first I can send() and recv()).
I have a server listening on 192.168.1.99:XXXX (my machine's address).
I then get a socket and bind to 192.168.1.99:0. I get a socket error 10049 (WSAEADDRNOTAVAIL) when I try to connect. The same thing happens if I try to bind to 0.0.0.0:0.
If I try to bind to 127.0.0.1:0 or localhost or leave the hostname NULL (if this is even possible, should I be using the AI_PASSIVE flag?) and then connect I get a 10061 (WSACONNREFUSED).
Anyone know the right way to do this here?
EDIT3: Turns out the issue was that I was calling socket before I called bind and then calling it again before I called connect. I switched it to only call socket before calling bind. I don't know if anyone else is confused by this whole concept, so I'll leave this here unless someone feels it should be closed?
EDIT 2: Is the issue that I call socket twice?
EDIT: Here's some of the functionality
int main() {
WSADATA wsaData; // if this doesn't work
if(WSAStartup(MAKEWORD(2,0), &wsaData) != 0) {
cout << WSAStartup failed << endl;
return -1;
}
ClientSocket* cs = new ClientSocket("192.168.1.99", "XXXX");
cs->bind("", "0"); //error 10049 (WSAEADDRNOTAVAIL)
//cs->bind("", "60000"); //error 10049 (WSAEADDRNOTAVAIL)
//cs->bind("0.0.0.0", "0"); //error 10049 (WSAEADDRNOTAVAIL)
//cs->bind("0.0.0.0", "60000"); //error 10049 (WSAEADDRNOTAVAIL)
//cs->bind("192.168.1.99", "0"); //error 10061 (WSACONNREFUSED)
//cs->bind("192.168.1.99", "60000"); //error 10061 (WSACONNREFUSED)
//cs->bind("127.0.0.1", "0"); //error 10061 (WSACONNREFUSED)
//cs->bind("127.0.0.1", "60000"); //error 10061 (WSACONNREFUSED)
//cs->bind("localhost", "0"); //error 10061 (WSACONNREFUSED)
//cs->bind("localhost", "60000"); //error 10061 (WSACONNREFUSED)
cs->connect(); //connects to the info passed in ctor
Socket* s = cs->getSocket();
if(s == NULL) {
cs->close();
return -1;
}
.
.
.
.
}
//these are the methods exposed by my API
int ClientSocket::bind(std::string hostname, std::string port) {
if(bound) {
return -1;
}
if(connected) {
return -2;
}
//this defines what specialSockOp will do
ssop = &ClientSocket::BaseDef::bind;
info->hostname = hostname;
if(hostname.compare("") == 0) {
info->AI_FLAG_PASSIVE = true;
}
info->port = port;
//calls SpecialSocket::socket()
socket();
bound = true;
return 0;
}
int ClientSocket::connect() {
if(connected) {
return SOCKET_ERROR;
//throw exception
}
if(bound) {
ssop = &ClientSocket::BaseDef::connect;
}
socket();
return 0;
}
void SpecialSocket::WinImp::socket() {
struct addrinfo *results = NULL, *p = NULL, hints;
int rv;
ZeroMemory(&hints, sizeof(hints));
hints.ai_family = (containerClass->info->ipType == IP_DUAL ? AF_UNSPEC :
containerClass->info->ipType == IPV6 ? AF_INET6 : AF_INET);
hints.ai_socktype = (containerClass->info->protocol == TCP ? SOCK_STREAM :
SOCK_DGRAM);
hints.ai_protocol = 0;
if(containerClass->info->AI_FLAG_PASSIVE) {
hints.ai_flags |= AI_PASSIVE;
}
if(containerClass->info->AI_FLAG_CANONNAME) {
hints.ai_flags |= AI_CANONNAME;
}
//cStringHostname returns NULL if an empty string has been passed in
if((rv = getaddrinfo(containerClass->info->cStringHostname(),
containerClass->info->cStringPort(), &hints, &results)) != 0) {
//throw exception
}
for(p = results; p != NULL; p = p->ai_next) {
if((containerClass->info->sock_fd = ::socket(p->ai_family,
p->ai_socktype, p->ai_protocol)) == INVALID_SOCKET) {
closesocket(containerClass->info->sock_fd);
continue;
}
//for a ClientSocket specialSockOp will call either bind or connect
//corresponding to the function called by ClientSocket
if(containerClass->specialSockOp(p->ai_addr) == SOCKET_ERROR) {
closesocket(containerClass->info->sock_fd);
continue;
}
break; //successfully connected
}
if(p == NULL) {
//none of the connections in results were good
//throw exception - could not connect
}
freeaddrinfo(results);
}
int SpecialSocket::WinImp::bind(const void* addr) {
struct sockaddr* ai_addr = (struct sockaddr*)addr;
return ::bind(containerClass->getSockFd(), ai_addr, sizeof(*ai_addr));
}
int ClientSocket::WinImp::connect(const void* addr) {
struct sockaddr* ai_addr = (struct sockaddr*)addr;
int result = ::connect(containerClass->getSockFd(), ai_addr, sizeof(*ai_addr));
if(result == SOCKET_ERROR) {
//these are where my errors are showing up
cout << "error after connect() is - " << WSAGetLastError() << endl;
return SOCKET_ERROR;
}
containerClass->servInfo->sock_fd = containerClass->getSockFd();
//I separated the functionality here - Socket can only send/recv
containerClass->s = new Socket();
//I use getpeername here to get information about the remote socket
//Long story but basically sets up the Socket
containerClass->initRWSocket(containerClass->s, containerClass->servInfo);
return result;
}
A user can then call ClientSocket.getSocket() which returns a Socket that they are then able to send/recv on. In my case, this is returning NULL since the Socket is never instantiated, because SpecialSocket::connect returns before it does that.