VirtualBox

Ignore:
Timestamp:
Aug 16, 2016 2:05:03 PM (9 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
110219
Message:

scm: cleaning up todos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/VBoxNetAdp/win/VBoxNetAdp-win.cpp

    r62719 r63564  
    197197        pAdapter->hAdapter = hAdapter;
    198198        pAdapter->pGlobals = &g_VBoxNetAdpGlobals;
    199         // TODO: Use netadp structure instead!
     199        /// @todo Use netadp structure instead!
    200200    /* Use a locally administered version of the OUI we use for the guest NICs. */
    201201    pAdapter->MacAddr.au8[0] = 0x08 | 2;
     
    207207    pAdapter->MacAddr.au8[5] = uIfIndex & 0xFF;
    208208
    209         //TODO: Statistics?
     209        /// @todo Statistics?
    210210
    211211        *ppAdapter = pAdapter;
     
    265265        }
    266266
    267         // TODO: Registry?
    268 
    269         // TODO: WDM stack?
    270 
    271         // TODO: DPC?
     267        /// @todo Registry?
     268
     269        /// @todo WDM stack?
     270
     271        /// @todo DPC?
    272272
    273273        GAttrs.Header.Type = NDIS_OBJECT_TYPE_MINIPORT_ADAPTER_GENERAL_ATTRIBUTES;
     
    277277        GAttrs.MediaType = NdisMedium802_3;
    278278        GAttrs.PhysicalMediumType = NdisPhysicalMediumUnspecified;
    279         GAttrs.MtuSize = 1500; //TODO
     279        GAttrs.MtuSize = 1500; /// @todo
    280280        GAttrs.MaxXmitLinkSpeed = VBOXNETADPWIN_LINK_SPEED;
    281281        GAttrs.XmitLinkSpeed = VBOXNETADPWIN_LINK_SPEED;
     
    284284        GAttrs.MediaConnectState = vboxNetAdpWinGetConnectState(pAdapter);
    285285        GAttrs.MediaDuplexState = MediaDuplexStateFull;
    286         GAttrs.LookaheadSize = 1500; //TODO
     286        GAttrs.LookaheadSize = 1500; /// @todo
    287287        GAttrs.MacOptions = VBOXNETADP_MAC_OPTIONS;
    288288        GAttrs.SupportedPacketFilters = VBOXNETADP_SUPPORTED_FILTERS;
    289         GAttrs.MaxMulticastListSize = 32; //TODO
     289        GAttrs.MaxMulticastListSize = 32; /// @todo
    290290
    291291        GAttrs.MacAddressLength = ETH_LENGTH_OF_ADDRESS;
     
    334334    PVBOXNETADP_ADAPTER pAdapter = (PVBOXNETADP_ADAPTER)MiniportAdapterContext;
    335335    LogFlow(("==>vboxNetAdpWinHaltEx\n"));
    336     // TODO: Stop something?
     336    /// @todo Stop something?
    337337    if (pAdapter)
    338338        vboxNetAdpWinFreeAdapter(pAdapter);
     
    403403        case OID_GEN_RECEIVE_BUFFER_SPACE:
    404404        case OID_GEN_TRANSMIT_BUFFER_SPACE:
    405             // TODO: Make configurable
     405            /// @todo Make configurable
    406406            ulTmp = VBOXNETADP_MAX_FRAME_SIZE * 40;
    407407            break;
     
    418418            pStats->Header.Revision = NDIS_STATISTICS_INFO_REVISION_1;
    419419            pStats->Header.Size = NDIS_SIZEOF_STATISTICS_INFO_REVISION_1;
    420             // TODO: We need some stats, don't we?
     420            /// @todo We need some stats, don't we?
    421421            break;
    422422        }
     
    490490                break;
    491491            }
    492             // TODO: For the time being we simply ignore lookahead settings.
     492            /// @todo For the time being we simply ignore lookahead settings.
    493493            pSet->BytesRead = sizeof(ULONG);
    494494            Status = NDIS_STATUS_SUCCESS;
     
    502502                break;
    503503            }
    504             // TODO: For the time being we simply ignore packet filter settings.
     504            /// @todo For the time being we simply ignore packet filter settings.
    505505            pSet->BytesRead = pSet->InformationBufferLength;
    506506            Status = NDIS_STATUS_SUCCESS;
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