c++ connect() keeps returning WSATIMEDOUT over internet but not localy
- by KaiserJohaan
Hello,
For some reason, my chat application always gets WSATIMEDOUT when trying to connect to another person over the internet.
int len_ip = GetWindowTextLength(GetDlgItem(hWnd,ID_EDIT_IP));
char ipBuffer[16];
SendMessage(GetDlgItem(hWnd,ID_EDIT_IP),WM_GETTEXT,16,(LPARAM)ipBuffer);
long host_ip = inet_addr(ipBuffer);
int…