VirtualBox

Changeset 24285 in vbox for trunk/src/VBox


Ignore:
Timestamp:
Nov 3, 2009 10:57:41 AM (15 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
54267
Message:

DrvNetSniffer: fixed cMaxInstances; append the instance number to the default log file if no filename was specified

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/DrvNetSniffer.cpp

    r22460 r24285  
    399399    int rc = CFGMR3QueryString(pCfgHandle, "File", pThis->szFilename, sizeof(pThis->szFilename));
    400400    if (rc == VERR_CFGM_VALUE_NOT_FOUND)
    401         RTStrPrintf(pThis->szFilename, sizeof(pThis->szFilename), "./VBox-%x.pcap", RTProcSelf());
     401    {
     402        if (pDrvIns->iInstance > 0)
     403            RTStrPrintf(pThis->szFilename, sizeof(pThis->szFilename), "./VBox-%x-%u.pcap", RTProcSelf(), pDrvIns->iInstance);
     404        else
     405            RTStrPrintf(pThis->szFilename, sizeof(pThis->szFilename), "./VBox-%x.pcap", RTProcSelf());
     406    }
     407
    402408    else if (RT_FAILURE(rc))
    403409    {
     
    491497    PDM_DRVREG_CLASS_NETWORK,
    492498    /* cMaxInstances */
    493     1,
     499    UINT32_MAX,
    494500    /* cbInstance */
    495501    sizeof(DRVNETSNIFFER),
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette