Search found 2 matches

by setur
2012-03-06 08:48
Forum: Developer discussions (mainly user-mode)
Topic: How do diffrent reconnection
Replies: 1
Views: 5377

Re: How do diffrent reconnection

I have a progress with that.
But I have a new problem.

///Force break after timeout
DWORD threadID;
ThreadSocketTimeout = CreateThread(NULL,0,SocketTimeout,(LPVOID)&m_sock,0,&threadID);
res = connect(m_sock, (LPSOCKADDR) &thataddr, sizeof(thataddr));

This socket timeout doesn't work and i don ...
by setur
2012-02-24 07:32
Forum: Developer discussions (mainly user-mode)
Topic: How do diffrent reconnection
Replies: 1
Views: 5377

How do diffrent reconnection

Hi.
I need to modify source code for that thing: vnc client show one server, after 30 sec client close connection and open connection to another server from list.
I'm so bad in uvnc source and Win C programming and so i need help.

I'm see 2 ways.

Modify App object and WinMain functtion. First App ...