Changeset 91050 in vbox
- Timestamp:
- Sep 1, 2021 8:13:51 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/DrvHostAudioValidationKit.cpp
r90983 r91050 1110 1110 1111 1111 /** @todo Make this configurable via CFGM. */ 1112 const char *psz TcpAddr = "127.0.0.1"; /* Only reachable for localhost for now. */1113 uint32_t u TcpPort = 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; 1114 1114 1115 1115 LogRel(("ValKit: Starting Audio Test Service (ATS) at %s:%RU32...\n", 1116 psz TcpAddr, uTcpPort));1116 pszBindAddr, uBindPort)); 1117 1117 1118 1118 /* Dont' use rc here, as this will be reported back to PDM and will prevent VBox … … 1128 1128 AssertRC(rc2); 1129 1129 1130 Val.psz = psz TcpAddr;1130 Val.psz = pszBindAddr; 1131 1131 rc2 = AudioTestSvcHandleOption(&pThis->Srv, ATSTCPOPT_BIND_ADDRESS, &Val); 1132 1132 AssertRC(rc2); 1133 1133 1134 Val.u16 = u TcpPort;1134 Val.u16 = uBindPort; 1135 1135 rc2 = AudioTestSvcHandleOption(&pThis->Srv, ATSTCPOPT_BIND_PORT, &Val); 1136 1136 AssertRC(rc2);
Note:
See TracChangeset
for help on using the changeset viewer.

