- Timestamp:
- Oct 22, 2021 7:13:14 AM (3 years ago)
- Location:
- trunk/src/VBox/Devices/Audio
- Files:
-
- 4 edited
-
AudioTestService.cpp (modified) (1 diff)
-
AudioTestServiceClient.cpp (modified) (1 diff)
-
AudioTestServiceInternal.h (modified) (2 diffs)
-
AudioTestServiceTcp.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Audio/AudioTestService.cpp
r91040 r91996 1174 1174 1175 1175 if (pThis->pTransport) 1176 pThis->pTransport->pfn Term(pThis->pTransportInst);1176 pThis->pTransport->pfnStop(pThis->pTransportInst); 1177 1177 1178 1178 size_t cbWritten; -
trunk/src/VBox/Devices/Audio/AudioTestServiceClient.cpp
r91995 r91996 321 321 if (pClient->pTransport) 322 322 { 323 pClient->pTransport->pfn Term(pClient->pTransportInst);323 pClient->pTransport->pfnStop(pClient->pTransportInst); 324 324 pClient->pTransport->pfnDestroy(pClient->pTransportInst); 325 325 pClient->pTransport = NULL; -
trunk/src/VBox/Devices/Audio/AudioTestServiceInternal.h
r91024 r91996 110 110 111 111 /** 112 * Terminatea transport instance, closing and freeing resources.112 * Stops a transport instance, closing and freeing resources. 113 113 * 114 114 * On errors, the transport layer shall call RTMsgError to display the error … … 117 117 * @param pThis The transport instance. 118 118 */ 119 DECLR3CALLBACKMEMBER(void, pfn Term, (PATSTRANSPORTINST pThis));119 DECLR3CALLBACKMEMBER(void, pfnStop, (PATSTRANSPORTINST pThis)); 120 120 121 121 /** -
trunk/src/VBox/Devices/Audio/AudioTestServiceTcp.cpp
r91080 r91996 711 711 712 712 /** 713 * @interface_method_impl{ATSTRANSPORT,pfn Term}714 */ 715 static DECLCALLBACK(void) atsTcp Term(PATSTRANSPORTINST pThis)713 * @interface_method_impl{ATSTRANSPORT,pfnStop} 714 */ 715 static DECLCALLBACK(void) atsTcpStop(PATSTRANSPORTINST pThis) 716 716 { 717 717 LogRelFlowFuncEnter(); … … 907 907 /* .pfnOption = */ atsTcpOption, 908 908 /* .pfnStart = */ atsTcpStart, 909 /* .pfn Term = */ atsTcpTerm,909 /* .pfnStop = */ atsTcpStop, 910 910 /* .pfnWaitForConnect = */ atsTcpWaitForConnect, 911 911 /* .pfnPollIn = */ atsTcpPollIn,
Note:
See TracChangeset
for help on using the changeset viewer.

