search for: vnc_data

Displaying 1 result from an estimated 1 matches for "vnc_data".

Did you mean: vc_data
2009 May 19
2
[PATCH server] added ovirt vnc proxy server, to proxy vnc request to managed vms
...al Public License is +# also available at http://www.gnu.org/copyleft/gpl.html. + +$: << File.join(File.dirname(__FILE__), "../dutils") + +require 'dutils' +require 'daemons' +include Daemonize + +########### + +DEFAULT_VNC_PROXY_PORT = 5900 +VM_NAME_MAX_LEN = 250 +VNC_DATA_MAX_LEN = 800000 + +########### + +# clone of the taskomatic / dbomatic logger; +# TODO 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 +e...