Changeset 55259 in vbox for trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
- Timestamp:
- Apr 14, 2015 5:59:42 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp
r55234 r55259 5 5 6 6 /* 7 * Copyright (C) 2006-201 4Oracle Corporation7 * Copyright (C) 2006-2015 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 1997 1997 else if ( !RTStrICmp(ValueUnion.psz, "server") 1998 1998 || !RTStrICmp(ValueUnion.psz, "client") 1999 || !RTStrICmp(ValueUnion.psz, "tcpserver") 2000 || !RTStrICmp(ValueUnion.psz, "tcpclient") 1999 2001 || !RTStrICmp(ValueUnion.psz, "file")) 2000 2002 { … … 2017 2019 { 2018 2020 CHECK_ERROR(uart, COMSETTER(HostMode)(PortMode_HostPipe)); 2021 CHECK_ERROR(uart, COMSETTER(Server)(FALSE)); 2022 } 2023 else if (!RTStrICmp(pszMode, "tcpserver")) 2024 { 2025 CHECK_ERROR(uart, COMSETTER(HostMode)(PortMode_TCP)); 2026 CHECK_ERROR(uart, COMSETTER(Server)(TRUE)); 2027 } 2028 else if (!RTStrICmp(pszMode, "tcpclient")) 2029 { 2030 CHECK_ERROR(uart, COMSETTER(HostMode)(PortMode_TCP)); 2019 2031 CHECK_ERROR(uart, COMSETTER(Server)(FALSE)); 2020 2032 }
Note:
See TracChangeset
for help on using the changeset viewer.