- Timestamp:
- Apr 18, 2014 10:18:56 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/err.h
r50540 r51105 1523 1523 /** The image is too small or too large for this format. */ 1524 1524 #define VERR_VD_INVALID_SIZE (-3211) 1525 /** Configuration value is unknown. This indicates misconfiguration. */ 1526 #define VERR_VD_UNKNOWN_CFG_VALUES (-3212) 1527 /** Interface is unknown. This indicates misconfiguration. */ 1528 #define VERR_VD_UNKNOWN_INTERFACE (-3213) 1525 1529 /** Generic: Invalid image file header. Use this for plugins. */ 1526 1530 #define VERR_VD_GEN_INVALID_HEADER (-3220) … … 1547 1551 /** iSCSI: Invalid header, i.e. dummy for validity check. */ 1548 1552 #define VERR_VD_ISCSI_INVALID_HEADER (-3250) 1549 /** iSCSI: Configuration value is unknown. This indicates misconfiguration. */1550 #define VERR_VD_ISCSI_UNKNOWN_CFG_VALUES (-3251)1551 /** iSCSI: Interface is unknown. This indicates misconfiguration. */1552 #define VERR_VD_ISCSI_UNKNOWN_INTERFACE (-3252)1553 1553 /** iSCSI: Operation can't be done in current image state. */ 1554 #define VERR_VD_ISCSI_INVALID_STATE (-325 3)1554 #define VERR_VD_ISCSI_INVALID_STATE (-3251) 1555 1555 /** iSCSI: Invalid device type (not a disk). */ 1556 #define VERR_VD_ISCSI_INVALID_TYPE (-325 4)1556 #define VERR_VD_ISCSI_INVALID_TYPE (-3252) 1557 1557 /** iSCSI: Initiator secret not decrypted */ 1558 #define VERR_VD_ISCSI_SECRET_ENCRYPTED (-325 5)1558 #define VERR_VD_ISCSI_SECRET_ENCRYPTED (-3253) 1559 1559 /** VHD: Invalid image file header. */ 1560 1560 #define VERR_VD_VHD_INVALID_HEADER (-3260) -
trunk/src/VBox/Storage/ISCSI.cpp
r50988 r51105 3844 3844 if (!pImage->pIfNet) 3845 3845 { 3846 rc = vdIfError(pImage->pIfError, VERR_VD_ ISCSI_UNKNOWN_INTERFACE,3846 rc = vdIfError(pImage->pIfError, VERR_VD_UNKNOWN_INTERFACE, 3847 3847 RT_SRC_POS, N_("iSCSI: TCP network stack interface missing")); 3848 3848 goto out; … … 3853 3853 if (!pImage->pIfConfig) 3854 3854 { 3855 rc = vdIfError(pImage->pIfError, VERR_VD_ ISCSI_UNKNOWN_INTERFACE,3855 rc = vdIfError(pImage->pIfError, VERR_VD_UNKNOWN_INTERFACE, 3856 3856 RT_SRC_POS, N_("iSCSI: configuration interface missing")); 3857 3857 goto out; … … 3862 3862 if (!pImage->pIfIo) 3863 3863 { 3864 rc = vdIfError(pImage->pIfError, VERR_VD_ ISCSI_UNKNOWN_INTERFACE,3864 rc = vdIfError(pImage->pIfError, VERR_VD_UNKNOWN_INTERFACE, 3865 3865 RT_SRC_POS, N_("iSCSI: I/O interface missing")); 3866 3866 goto out; … … 3904 3904 "DumpMalformedPackets\0")) 3905 3905 { 3906 rc = vdIfError(pImage->pIfError, VERR_VD_ ISCSI_UNKNOWN_CFG_VALUES, RT_SRC_POS, N_("iSCSI: configuration error: unknown configuration keys present"));3906 rc = vdIfError(pImage->pIfError, VERR_VD_UNKNOWN_CFG_VALUES, RT_SRC_POS, N_("iSCSI: configuration error: unknown configuration keys present")); 3907 3907 goto out; 3908 3908 }
Note:
See TracChangeset
for help on using the changeset viewer.