VirtualBox

Changeset 91050 in vbox


Ignore:
Timestamp:
Sep 1, 2021 8:13:51 AM (3 years ago)
Author:
vboxsync
Message:

Audio/Validation Kit: Renaming. ​bugref:10008

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Audio/DrvHostAudioValidationKit.cpp

    r90983 r91050  
    11101110
    11111111    /** @todo Make this configurable via CFGM. */
    1112     const char *pszTcpAddr = "127.0.0.1"; /* Only reachable for localhost for now. */
    1113     uint32_t    uTcpPort   = ATS_TCP_DEF_BIND_PORT_VALKIT;
     1112    const char *pszBindAddr = "127.0.0.1"; /* Only reachable for localhost for now. */
     1113    uint32_t    uBindPort   = ATS_TCP_DEF_BIND_PORT_VALKIT;
    11141114
    11151115    LogRel(("ValKit: Starting Audio Test Service (ATS) at %s:%RU32...\n",
    1116             pszTcpAddr, uTcpPort));
     1116            pszBindAddr, uBindPort));
    11171117
    11181118    /* Dont' use rc here, as this will be reported back to PDM and will prevent VBox
     
    11281128        AssertRC(rc2);
    11291129
    1130         Val.psz = pszTcpAddr;
     1130        Val.psz = pszBindAddr;
    11311131        rc2 = AudioTestSvcHandleOption(&pThis->Srv, ATSTCPOPT_BIND_ADDRESS, &Val);
    11321132        AssertRC(rc2);
    11331133
    1134         Val.u16 = uTcpPort;
     1134        Val.u16 = uBindPort;
    11351135        rc2 = AudioTestSvcHandleOption(&pThis->Srv, ATSTCPOPT_BIND_PORT, &Val);
    11361136        AssertRC(rc2);
Note: See TracChangeset for help on using the changeset viewer.

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