Changeset 71349 in vbox for trunk/src/VBox/Main/idl/VirtualBox.xidl
- Timestamp:
- Mar 15, 2018 11:23:39 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/idl/VirtualBox.xidl
r71347 r71349 432 432 <desc> 433 433 A provided password was incorrect. 434 </desc> 435 </result> 436 437 <result name="VBOX_E_MAXIMUM_REACHED" value="0x80BB000E"> 438 <desc> 439 A maximum has been reached. 440 </desc> 441 </result> 442 443 <result name="VBOX_E_GSTCTL_GUEST_ERROR" value="0x80BB000F"> 444 <desc> 445 Guest Control reported an error from the guest side. 434 446 </desc> 435 447 </result> … … 11882 11894 11883 11895 There can be up to 2048 objects (guest processes, files and directories) 11884 a time per guest session. Exceeding the limit will result in an error .11885 <!-- @todo r=bird: Add specific VBOX_E_XXX error for this and document it here! --> 11896 a time per guest session. Exceeding the limit will result in an error (see 11897 the corresponding functions for more). 11886 11898 11887 11899 When done with either of these objects, including the guest session itself, … … 12206 12218 Error while opening the directory. 12207 12219 </result> 12220 <result name="VBOX_E_MAXIMUM_REACHED"> 12221 The maximum of concurrent guest directories has been reached. 12222 </result> 12208 12223 </desc> 12209 12224 <param name="path" type="wstring" dir="in"> … … 12513 12528 Error while opening the file. 12514 12529 </result> 12530 <result name="VBOX_E_MAXIMUM_REACHED"> 12531 The maximum of concurrent guest files has been reached. 12532 </result> 12515 12533 </desc> 12516 12534 <param name="path" type="wstring" dir="in"> … … 12795 12813 <result name="VBOX_E_IPRT_ERROR"> 12796 12814 Error creating guest process. 12815 </result> 12816 12817 <result name="VBOX_E_MAXIMUM_REACHED"> 12818 The maximum of concurrent guest processes has been reached. 12797 12819 </result> 12798 12820 </desc> … … 13921 13943 13922 13944 There can be a maximum of 32 sessions at once per VM. An error will 13923 be returned if this has been reached. <!-- This should actually read: 13924 VBOX_E_IPRT_ERROR will be return if this limit has been reached. 13925 However, keep in mind that VBOX_E_IPRT_ERROR can be returned for about 13926 88 unrelated reasons, so you don't know what happend unless you parse 13927 the error text. (bird) --> 13928 <!-- @todo r=bird: Seriously, add an dedicated VBOX_E_MAX_GUEST_SESSIONS status 13929 for this condition. Do the same for all other maximums and things that could be 13930 useful to the API client. --> 13945 be returned if this has been reached. 13931 13946 13932 13947 For more information please consult <link to="IGuestSession"/> 13948 13949 <result name="VBOX_E_IPRT_ERROR"> 13950 Error creating guest session. 13951 </result> 13952 13953 <result name="VBOX_E_MAXIMUM_REACHED"> 13954 The maximum of concurrent guest sessions has been reached. 13955 </result> 13933 13956 </desc> 13934 13957 <param name="user" type="wstring" dir="in">
Note:
See TracChangeset
for help on using the changeset viewer.