VirtualBox

Ignore:
Timestamp:
Apr 14, 2015 5:59:42 PM (10 years ago)
Author:
vboxsync
Message:

Main/Serial+Devices/Serial: new TCP backend for serial port. Contributed by Alexey Eromenko. Thanks!
Frontends/VirtualBox+VBoxManage: adapted accordingly

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Frontends/VBoxManage/VBoxManageModifyVM.cpp

    r55234 r55259  
    55
    66/*
    7  * Copyright (C) 2006-2014 Oracle Corporation
     7 * Copyright (C) 2006-2015 Oracle Corporation
    88 *
    99 * This file is part of VirtualBox Open Source Edition (OSE), as
     
    19971997                else if (   !RTStrICmp(ValueUnion.psz, "server")
    19981998                         || !RTStrICmp(ValueUnion.psz, "client")
     1999                         || !RTStrICmp(ValueUnion.psz, "tcpserver")
     2000                         || !RTStrICmp(ValueUnion.psz, "tcpclient")
    19992001                         || !RTStrICmp(ValueUnion.psz, "file"))
    20002002                {
     
    20172019                    {
    20182020                        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));
    20192031                        CHECK_ERROR(uart, COMSETTER(Server)(FALSE));
    20202032                    }
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