- Timestamp:
- Mar 5, 2007 3:10:49 PM (18 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r1142 r1218 6946 6946 <interface 6947 6947 name="IVRDPServer" extends="$unknown" 6948 uuid=" 758e413b-8693-4b4f-bcd8-48ce2c3a7f4d"6948 uuid="2e88bf9e-2085-421f-9aa2-32088b0378b3" 6949 6949 > 6950 6950 <attribute name="enabled" type="boolean"> … … 6954 6954 <attribute name="port" type="unsigned long"> 6955 6955 <desc>VRDP server port.</desc> 6956 </attribute> 6957 6958 <attribute name="netAddress" type="wstring"> 6959 <desc>VRDP server address.</desc> 6956 6960 </attribute> 6957 6961 -
trunk/src/VBox/Main/include/VRDPServerImpl.h
r1 r1218 45 45 (mEnabled == that.mEnabled && 46 46 mVRDPPort == that.mVRDPPort && 47 mVRDPAddress == that.mVRDPAddress && 47 48 mAuthType == that.mAuthType && 48 49 mAuthTimeout == that.mAuthTimeout); … … 51 52 BOOL mEnabled; 52 53 ULONG mVRDPPort; 54 Bstr mVRDPAddress; 53 55 VRDPAuthType_T mAuthType; 54 56 ULONG mAuthTimeout; … … 80 82 STDMETHOD(COMGETTER(Port))(ULONG *port); 81 83 STDMETHOD(COMSETTER(Port))(ULONG port); 84 STDMETHOD(COMGETTER(NetAddress))(BSTR *address); 85 STDMETHOD(COMSETTER(NetAddress))(INPTR BSTR address); 82 86 STDMETHOD(COMGETTER(AuthType))(VRDPAuthType_T *type); 83 87 STDMETHOD(COMSETTER(AuthType))(VRDPAuthType_T type); -
trunk/src/VBox/Main/xml/VirtualBox-settings-common.xsd
r1077 r1218 383 383 <xsd:attribute name="enabled" type="xsd:boolean"/> 384 384 <xsd:attribute name="port" type="xsd:unsignedInt" default="0"/> 385 <xsd:attribute name="netAddress" type="xsd:token" default="0"/> 385 386 <xsd:attribute name="authType" type="TVRDPAuthType" default="null"/> 386 387 <xsd:attribute name="authTimeout" type="xsd:unsignedInt" default="5000"/>
Note:
See TracChangeset
for help on using the changeset viewer.