VirtualBox

Changeset 63562 in vbox for trunk/src/VBox/Devices/Network


Ignore:
Timestamp:
Aug 16, 2016 2:04:03 PM (8 years ago)
Author:
vboxsync
Message:

scm: cleaning up todos

Location:
trunk/src/VBox/Devices/Network
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/DevE1000.cpp

    r63478 r63562  
    34663466    else
    34673467    {
    3468         pGso->cbHdrsSeg = pCtx->dw3.u8HDRLEN; /* @todo IPv6 UFO */
     3468        pGso->cbHdrsSeg = pCtx->dw3.u8HDRLEN; /** @todo IPv6 UFO */
    34693469        if (pCtx->dw2.fTCP)
    34703470            pGso->u8Type = PDMNETWORKGSOTYPE_IPV6_TCP;
     
    51235123        }
    51245124
    5125         /// @todo: uncomment: pThis->uStatIntTXQE++;
    5126         /// @todo: uncomment: e1kRaiseInterrupt(pThis, ICR_TXQE);
     5125        /// @todo uncomment: pThis->uStatIntTXQE++;
     5126        /// @todo uncomment: e1kRaiseInterrupt(pThis, ICR_TXQE);
    51275127        /*
    51285128         * Release the lock.
     
    52875287        STAM_PROFILE_ADV_STOP(&pThis->CTX_SUFF_Z(StatTransmit), a);
    52885288
    5289         /// @todo: uncomment: pThis->uStatIntTXQE++;
    5290         /// @todo: uncomment: e1kRaiseInterrupt(pThis, ICR_TXQE);
     5289        /// @todo uncomment: pThis->uStatIntTXQE++;
     5290        /// @todo uncomment: e1kRaiseInterrupt(pThis, ICR_TXQE);
    52915291
    52925292        e1kCsTxLeave(pThis);
     
    66886688#endif
    66896689#endif /* E1K_WITH_TXD_CACHE */
    6690 /**@todo GSO requires some more state here. */
     6690/** @todo GSO requires some more state here. */
    66916691    E1kLog(("%s State has been saved\n", pThis->szPrf));
    66926692    return VINF_SUCCESS;
     
    67706770        SSMR3GetMem(pSSM, &pThis->auRegs, sizeof(pThis->auRegs));
    67716771        SSMR3GetBool(pSSM, &pThis->fIntRaised);
    6772         /** @todo: PHY could be made a separate device with its own versioning */
     6772        /** @todo PHY could be made a separate device with its own versioning */
    67736773        Phy::loadState(pSSM, &pThis->phy);
    67746774        SSMR3GetU32(pSSM, &pThis->uSelectedReg);
     
    71817181    PDMCritSectEnter(&pThis->cs, VERR_SEM_BUSY);
    71827182
    7183     /** @todo: r=pritesh still need to check if i missed
     7183    /** @todo r=pritesh still need to check if i missed
    71847184     * to clean something in this function
    71857185     */
     
    75187518                                N_("Invalid configuration for E1000 device"));
    75197519
    7520     /** @todo: LineSpeed unused! */
     7520    /** @todo LineSpeed unused! */
    75217521
    75227522    pThis->fR0Enabled    = true;
  • trunk/src/VBox/Devices/Network/DevINIP.cpp

    r63211 r63562  
    284284        PDMDEV_SET_ERROR(pDevIns, rc,
    285285                         N_("Configuration error: Failed to get the \"IP\" value"));
    286         /* @todo: perhaps we should panic if IPv4 address isn't specify, with assumtion that
     286        /** @todo perhaps we should panic if IPv4 address isn't specify, with assumtion that
    287287         * ISCSI target specified in IPv6 form.
    288288         */
  • trunk/src/VBox/Devices/Network/DevPCNet.cpp

    r63226 r63562  
    47124712    PDMCritSectEnter(&pThis->CritSect, VERR_SEM_BUSY);
    47134713
    4714     /** @todo: r=pritesh still need to check if i missed
     4714    /** @todo r=pritesh still need to check if i missed
    47154715     * to clean something in this function
    47164716     */
  • trunk/src/VBox/Devices/Network/DevVirtioNet.cpp

    r63478 r63562  
    471471    vnetCsRxLeave(pThis);
    472472
    473     // TODO: Implement reset
     473    /// @todo Implement reset
    474474    if (pThis->fCableConnected)
    475475        STATUS = VNET_S_LINK_UP;
  • trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp

    r63478 r63562  
    62286228            if (   enmTrunkType == kIntNetTrunkType_WhateverNone
    62296229#ifdef VBOX_WITH_NAT_SERVICE
    6230                 || enmTrunkType == kIntNetTrunkType_SrvNat /* @todo: what does it mean */
     6230                || enmTrunkType == kIntNetTrunkType_SrvNat /** @todo what does it mean */
    62316231#endif
    62326232                || (   pCur->enmTrunkType == enmTrunkType
  • trunk/src/VBox/Devices/Network/lwip-new/vbox/VBoxLwipCore.cpp

    r62499 r63562  
    2828#include <iprt/types.h>
    2929#include "VBoxLwipCore.h"
    30 /* @todo: lwip or nat ? */
     30/** @todo lwip or nat ? */
    3131#define LOG_GROUP LOG_GROUP_DRV_NAT
    3232#include <iprt/cpp/lock.h>
     
    155155    if (lwipRc != ERR_OK)
    156156    {
    157         /* @todo: map lwip error code? */
     157        /** @todo map lwip error code? */
    158158        rc = VERR_INTERNAL_ERROR;
    159159    }
  • trunk/src/VBox/Devices/Network/lwip-new/vbox/sys_arch.c

    r63011 r63562  
    6464
    6565/** Actual declaration of the mbox type. */
    66 /* @todo: magic - ??? */
     66/** @todo magic - ??? */
    6767struct sys_mbox
    6868{
  • trunk/src/VBox/Devices/Network/slirp/bootp.c

    r63012 r63562  
    6767    uint8_t *q = vend;
    6868    uint8_t len;
    69     /*@todo magic validation */
     69    /** @todo magic validation */
    7070    q += 4; /*magic*/
    7171    while(*q != RFC1533_END)
  • trunk/src/VBox/Devices/Network/slirp/ip_input.c

    r63016 r63562  
    660660    register caddr_t opts;
    661661    int olen;
    662     NOREF(mopt); /* @todo: do we really will need this options buffer? */
     662    NOREF(mopt); /** @todo do we really will need this options buffer? */
    663663
    664664    olen = (ip->ip_hl<<2) - sizeof(struct ip);
  • trunk/src/VBox/Devices/Network/slirp/libalias/alias.c

    r63217 r63562  
    15791579LibAliasRefreshModules(void)
    15801580{
    1581     /* @todo (r - vasily) here should be module loading */
     1581    /** @todo (r - vasily) here should be module loading */
    15821582#ifndef VBOX
    15831583    char buf[256], conf[] = "/etc/libalias.conf";
  • trunk/src/VBox/Devices/Network/slirp/slirp.c

    r62696 r63562  
    373373    pData->slirp_ethaddr = &special_ethaddr[0];
    374374    alias_addr.s_addr = pData->special_addr.s_addr | RT_H2N_U32_C(CTL_ALIAS);
    375     /* @todo: add ability to configure this staff */
     375    /** @todo add ability to configure this staff */
    376376
    377377    /*
     
    418418    }
    419419#ifdef VBOX_WITH_NAT_SEND2HOME
    420     /* @todo: we should know all interfaces available on host. */
     420    /** @todo we should know all interfaces available on host. */
    421421    pData->pInSockAddrHomeAddress = RTMemAllocZ(sizeof(struct sockaddr));
    422422    pData->cInHomeAddressSize = 1;
     
    734734         * receive more, and we have room for it XXX /2 ?
    735735         */
    736         /* @todo: vvl - check which predicat here will be more useful here in rerm of new sbufs. */
     736        /** @todo vvl - check which predicat here will be more useful here in rerm of new sbufs. */
    737737        if (   CONN_CANFRCV(so)
    738738            && (SBUF_LEN(&so->so_snd) < (SBUF_SIZE(&so->so_snd)/2))
  • trunk/src/VBox/Devices/Network/slirp/socket.c

    r63121 r63562  
    115115        AssertReturn((pNewSocket, false));
    116116        pData->pInSockAddrHomeAddress[idxAddr].sin_port = pSo->so_fport;
    117         /* @todo: more verbose on errors,
     117        /** @todo more verbose on errors,
    118118         * @note: we shouldn't care if this send fail or not (we're in broadcast).
    119119         */
  • trunk/src/VBox/Devices/Network/slirp/tcp_input.c

    r63016 r63562  
    481481    {
    482482        QSOCKET_UNLOCK(tcb);
    483         /* @todo fix SOLOOKUP macrodefinition to be usable here */
     483        /** @todo fix SOLOOKUP macrodefinition to be usable here */
    484484        so = solookup(&tcb, ti->ti_src, ti->ti_sport,
    485485                      ti->ti_dst, ti->ti_dport);
  • trunk/src/VBox/Devices/Network/slirp/tcp_subr.c

    r63016 r63562  
    562562    if (cVerbose > 0)
    563563        LogRel(("NAT: Old socket recv size: %dKB\n", opt / 1024));
    564     /* @todo (r-vvl) make it configurable (via extra data) */
     564    /** @todo (r-vvl) make it configurable (via extra data) */
    565565    opt = pData->socket_rcv;
    566566    status = setsockopt(s, SOL_SOCKET, SO_RCVBUF, (char *)&opt, sizeof(int));
  • trunk/src/VBox/Devices/Network/slirp/tftp.c

    r63478 r63562  
    303303                rc = tftpSessionParseAndMarkOption(pszTftpRRQRaw, &pTftpSession->OptionTSize);
    304304
    305             /* @todo: we don't use timeout, but its value in the range 0-255 */
     305            /** @todo we don't use timeout, but its value in the range 0-255 */
    306306            if (   RT_SUCCESS(rc)
    307307                && !RTStrICmp("timeout", g_TftpDesc[idxOptionArg].pszName))
    308308                rc = tftpSessionParseAndMarkOption(pszTftpRRQRaw, &pTftpSession->OptionTimeout);
    309309
    310             /* @todo: unknown option detection */
     310            /** @todo unknown option detection */
    311311            if (RT_FAILURE(rc))
    312312            {
  • trunk/src/VBox/Devices/Network/slirp/udp.c

    r63016 r63562  
    686686    /* The original check was completely broken, as the commented out
    687687     * if statement was always true (INADDR_ANY=0). */
    688     /* @todo: vvl - alias_addr should be set (if required)
     688    /** @todo vvl - alias_addr should be set (if required)
    689689     * later by liabalias module.
    690690     */
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