Changeset 29470 in vbox
- Timestamp:
- May 14, 2010 1:10:17 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r29462 r29470 4989 4989 alock.release(); 4990 4990 4991 size_t cbData = (size_t)RT_MIN(aSize, 2048); 4991 /* Limit the chunk size to 32K for now, as that gives better performance 4992 * over (XP)COM, and keeps the SOAP reply size under 1M for the webservice. 4993 * One byte expands to approx. 25 bytes of breathtaking XML. */ 4994 size_t cbData = (size_t)RT_MIN(aSize, 32768); 4992 4995 com::SafeArray<BYTE> logData(cbData); 4993 4996
Note:
See TracChangeset
for help on using the changeset viewer.