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 .....
After more 1 000 000 (one million) views on forum for 1.5.0.x development versions... and 1.6.0.0 version
A new stable version, UltraVNC 1.6.1.0 and UltraVNC SC 1.6.1.0 have been released: https://forum.uvnc.com/viewtopic.php?t=38080
Feedback is welcome
Celebrating the 22th anniversary of the UltraVNC (25th anniversary since the laying of the foundation stone): https://forum.uvnc.com/viewtopic.php?t=38031
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Forum password change request: https://forum.uvnc.com/viewtopic.php?t=38078
Development: UltraVNC development is always here... Any help is welcome.
A new development version, UltraVNC 1.6.3.0-dev has been released, please test it: https://forum.uvnc.com/viewtopic.php?t=38091
Feedback is welcome
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
A new stable version, UltraVNC 1.6.1.0 and UltraVNC SC 1.6.1.0 have been released: https://forum.uvnc.com/viewtopic.php?t=38080
Feedback is welcome
Celebrating the 22th anniversary of the UltraVNC (25th anniversary since the laying of the foundation stone): https://forum.uvnc.com/viewtopic.php?t=38031
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/viewtopic.php?t=37864
Forum password change request: https://forum.uvnc.com/viewtopic.php?t=38078
Development: UltraVNC development is always here... Any help is welcome.
A new development version, UltraVNC 1.6.3.0-dev has been released, please test it: https://forum.uvnc.com/viewtopic.php?t=38091
Feedback is welcome
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 ???