I wrote a windows service for watch repeater_service viewer port and server port state. Because sometimes my repeater stop working. When repeater service port is no responding, my windows service will restart repeater_service automatic.
my windows service code for connect to repeater service
try
client.sin_family := AF_INET; //Set the protocol to use , in this case (IPv4)
client.sin_port := htons(dwPort); //convert to TCP/IP network byte order (big-endian)
client.sin_addr.s_addr := inet_addr(PAnsiChar(AnsiString(ipAddressStr))); //convert to IN_ADDR structure
sock :=socket(AF_INET, SOCK_STREAM, 0); //creates a socket
SetSocketTimeOut(sock,10000,10000) ;
Result:=connect(sock,client,SizeOf(client))=0; //establishes a connection to a specified socket, if result false, i will restart repeater
finally
WSACleanup;
end;
today, i got some strange situation. when ipAddressStr (above code) is 127.0.0.1 everything is fine. but when I run the windows service from the other computer. ipAddressStr is IP address of repeater server. When my windows service connect to repeater_service. THE REPEATER SERVICE STOP RESPONDING FOR WINVNC or VNCVIEWER'S REQUEST.
so i guess, some people use tools scan ip and port over internet. when some people scan my repeater service. my repater service will hang.
thanks and sorry about my poor English .....
Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
The reason of repeater stop responding
-
- Posts: 7
- Joined: 2014-09-12 13:57
Re: The reason of repeater stop responding
hi everybody
today I use telnet connect to my repeater service 5500, then winvnc can not add newclient for new id.
Does anybody have the same situation with me ???
today I use telnet connect to my repeater service 5500, then winvnc can not add newclient for new id.
Does anybody have the same situation with me ???