Vnc.py (12230:48021d6b51eb) Vnc.py (12231:3bb6eaec2859)
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 31 unchanged lines hidden (view full) ---

40from Graphics import *
41
42
43class VncInput(SimObject):
44 type = 'VncInput'
45 cxx_header = "base/vnc/vncinput.hh"
46 frame_capture = Param.Bool(False, "capture changed frames to files")
47 img_format = Param.ImageFormat(
1# Copyright (c) 2010 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

--- 31 unchanged lines hidden (view full) ---

40from Graphics import *
41
42
43class VncInput(SimObject):
44 type = 'VncInput'
45 cxx_header = "base/vnc/vncinput.hh"
46 frame_capture = Param.Bool(False, "capture changed frames to files")
47 img_format = Param.ImageFormat(
48 "Bitmap", "Format of the dumped Framebuffer"
48 "Auto", "Format of the dumped Framebuffer"
49 )
50
51class VncServer(VncInput):
52 type = 'VncServer'
53 cxx_header = "base/vnc/vncserver.hh"
54 port = Param.TcpPort(5900, "listen port")
55 number = Param.Int(0, "vnc client number")
49 )
50
51class VncServer(VncInput):
52 type = 'VncServer'
53 cxx_header = "base/vnc/vncserver.hh"
54 port = Param.TcpPort(5900, "listen port")
55 number = Param.Int(0, "vnc client number")