Changeset 80403 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Aug 23, 2019 4:03:40 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Serial/DrvNamedPipe.cpp
r76553 r80403 1038 1038 /* Connect to the local socket. */ 1039 1039 if (connect(s, (struct sockaddr *)&addr, sizeof(addr)) == -1) 1040 { 1041 close(s); 1040 1042 return PDMDrvHlpVMSetError(pDrvIns, RTErrConvertFromErrno(errno), RT_SRC_POS, 1041 1043 N_("NamedPipe#%d failed to connect to local socket %s"), 1042 1044 pDrvIns->iInstance, pThis->pszLocation); 1045 } 1043 1046 1044 1047 rc = RTSocketFromNative(&pThis->hSock, s);
Note:
See TracChangeset
for help on using the changeset viewer.