Ok, I think I've got it, or I'll get it, but I have one little question, first, see the code:
info.sin_addr.s_addr = INADDR_ANY; // should I replace INADDR_ANY with iIp?
info.sin_port = htons(8888); // should I replace 8888 with iPort?
Basically, should I replace "INADDR_ANY" with the actual Ip address? And replace "8888" with the actual listening port? I couldn't find any answers while googling...