Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: 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
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

UVNC Repeater (UNIX version) Event Interface HTTP fixes

Any features you would like to see in UltraVNC? Propose it here
Post Reply
micaiahwallace
Posts: 1
Joined: 2017-11-22 18:37

UVNC Repeater (UNIX version) Event Interface HTTP fixes

Post by micaiahwallace »

There is an issue with HTTP interface when the event listener submits a GET request using the (usehttp=true) option.

The fix was to change the lines in "repeaterevents.cpp" from:

Code: Select all

GET /? EvMsgVer=... HTTP/1.0\n
to:

Code: Select all

GET /?EvMsgVer=... HTTP/1.0\n\n
There shouldn't be a space between the ? and the query params, there also needs to be 2 newlines at the end of the request "\n\n" instead of 1.

Thanks!
Post Reply