Changeset 40282 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Feb 28, 2012 9:02:40 PM (13 years ago)
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevE1000.cpp
r40280 r40282 6201 6201 PDM_DEVREG_CLASS_NETWORK, 6202 6202 /* Maximum number of instances (per VM). */ 6203 ~0 ,6203 ~0U, 6204 6204 /* Size of the instance data. */ 6205 6205 sizeof(E1KSTATE), -
trunk/src/VBox/Devices/Network/DevPCNet.cpp
r40280 r40282 5379 5379 PDM_DEVREG_CLASS_NETWORK, 5380 5380 /* cMaxInstances */ 5381 ~0 ,5381 ~0U, 5382 5382 /* cbInstance */ 5383 5383 sizeof(PCNetState), -
trunk/src/VBox/Devices/Network/DevVirtioNet.cpp
r40280 r40282 2093 2093 PDM_DEVREG_CLASS_NETWORK, 2094 2094 /* Maximum number of instances (per VM). */ 2095 ~0 ,2095 ~0U, 2096 2096 /* Size of the instance data. */ 2097 2097 sizeof(VNETSTATE), -
trunk/src/VBox/Devices/Network/DrvDedicatedNic.cpp
r39059 r40282 527 527 PDM_DRVREG_CLASS_NETWORK, 528 528 /* cMaxInstances */ 529 ~0 ,529 ~0U, 530 530 /* cbInstance */ 531 531 sizeof(DRVDEDICATEDNIC), -
trunk/src/VBox/Devices/Network/DrvIntNet.cpp
r38630 r40282 1841 1841 PDM_DRVREG_CLASS_NETWORK, 1842 1842 /* cMaxInstances */ 1843 ~0 ,1843 ~0U, 1844 1844 /* cbInstance */ 1845 1845 sizeof(DRVINTNET), -
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r39784 r40282 1462 1462 PDM_DRVREG_CLASS_NETWORK, 1463 1463 /* cMaxInstances */ 1464 ~0 ,1464 ~0U, 1465 1465 /* cbInstance */ 1466 1466 sizeof(DRVNAT), -
trunk/src/VBox/Devices/Network/DrvTAP.cpp
r39955 r40282 1011 1011 PDM_DRVREG_CLASS_NETWORK, 1012 1012 /* cMaxInstances */ 1013 ~0 ,1013 ~0U, 1014 1014 /* cbInstance */ 1015 1015 sizeof(DRVTAP), -
trunk/src/VBox/Devices/Network/DrvUDPTunnel.cpp
r37259 r40282 618 618 PDM_DRVREG_CLASS_NETWORK, 619 619 /* cMaxInstances */ 620 ~0 ,620 ~0U, 621 621 /* cbInstance */ 622 622 sizeof(DRVUDPTUNNEL), -
trunk/src/VBox/Devices/Network/DrvVDE.cpp
r37596 r40282 632 632 PDM_DRVREG_CLASS_NETWORK, 633 633 /* cMaxInstances */ 634 ~0 ,634 ~0U, 635 635 /* cbInstance */ 636 636 sizeof(DRVVDE),
Note:
See TracChangeset
for help on using the changeset viewer.