Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Socket connect() always succeeds (TCP over ActiveSync)

I'm using TCP/IP over ActiveSync to connect from Windows CE device to Windows XP desktop. The WinSock connect() function always succeeds, no matter whether desktop server application is actually running.

The following simplified code demonstrates this issue:

#include "stdafx.h"
#include <Winsock2.h>

int _tmain(int argc, _TCHAR* argv[])
{
    const int Port = 5555;
    const char * HostName = "ppp_peer";  

    WSADATA wsadata;
    if (WSAStartup(MAKEWORD(1, 1), &wsadata) != 0)
        return 1;

    struct hostent * hp = gethostbyname(HostName);
    if (hp == NULL)
        return 1;

    struct sockaddr_in sockaddr;
    memset(&sockaddr, 0, sizeof(sockaddr));
    sockaddr.sin_family = AF_INET;
    sockaddr.sin_addr.s_addr = ((struct in_addr *)(hp->h_addr))->s_addr;
    sockaddr.sin_port = htons(Port);    

    int sock = socket(AF_INET, SOCK_STREAM, 0);
    if (sock == SOCKET_ERROR)
        return 1;

    int result = connect(sock, (struct sockaddr*)&sockaddr, sizeof(sockaddr));
    // result always 0 (success) here

    closesocket(sock);

    return 0;
} 

Is this a bug? If not, what is a correct way to determine that the server is actually online? Only to try to use the established connection (recv/send data)?

Device: Windows CE 5.0, WinSock 2.2; Desktop: Windows XP, SP3, ActiveSync 4.5.

like image 294
Alex Che Avatar asked Nov 05 '22 15:11

Alex Che


1 Answers

From what IIRC, there is a bug in the ActiveSync in that the WM 5.0 thinks its still connected up to the ActiveSync server on the Windows desktop pc, see this answer here on SO which might provide a clue and/or insight into this and could explain why the socket connect always succeed...

like image 117
t0mm13b Avatar answered Nov 12 '22 17:11

t0mm13b