search for: vncproxy

Displaying 2 results from an estimated 2 matches for "vncproxy".

Did you mean: nsproxy
2009 May 19
2
[PATCH server] added ovirt vnc proxy server, to proxy vnc request to managed vms
...move all of these seperate implementations into a single dutils module +class Logger + def format_message(severity, timestamp, progname, msg) + "#{severity} #{timestamp} (#{$$}) #{msg}\n" + end +end + +$logfile = '/var/log/ovirt-server/vnc-proxy.log' + +########### + + +class VncProxy + + # initialize vnc proxy + def initialize() + super() + do_daemon = true + port = DEFAULT_VNC_PROXY_PORT + + opts = OptionParser.new do |opts| + opts.on("-h", "--help", "Print help message") do + puts opts +...
2015 Jan 30
3
SSH over websockets
I must be missing the point here somehow. From my simple mind I think that two things would be needed - first a mod, e.g., mod_sshd, or better an addition to mod_auth and mod_proxy so that a URL could be used to initiate contact to an sshd server elsewhere. The mod_auth part could/should be used to verity the credentials to used - basically setting up the VPN between ssh and httpd as ssh; the