On Mon, Nov 27, 2023 at 5:54 AM Jorge López Díaz <[email protected]> wrote:
> Hi Michael and Nick, > > > > Thanks for your response! > > > > @Nick Couchman <[email protected]>: “*but you'll have to be more specific > as to what parameters you're looking to pass.*” > > > > When we configure a ssh connection, for example, we pass params like > width, height and dpi params in the config params for the connection under > the name of *params *as you can see in this screencapture: > > > > But reading docs about configuring connections for VNC related to display > settings for this kind of connection it’s not possible: > > For all other connections, as Michaels said, we are using on resize > method, sending the width and heigh of user’s displays and it’s working as > expected, except in VNC. > > > Correct - the original VNC protocol did not contain a standard way to set the remote display (server) desktop size, so it was fixed at whatever the dimensions were when you started the server. This has changed some over the years; however, it was implemented in different ways by different VNC implementations, so it's still hit-or-miss as to whether or not it works from one client to another server. That said, there is a Jira issue for this, which was updated over the summer and mentions the support added to the libvncclient library for sending the display size to the server: https://issues.apache.org/jira/browse/GUACAMOLE-1196 So, it looks like we just need to check for support for that at compile time and put the support in there for sending that back to the server. -Nick >
