| 30 | using namespace scsi_defs; |
| 31 | |
| 32 | ScsiController::ScsiController(BUS& bus, int target_id) : AbstractController(bus, target_id, ControllerManager::GetScsiLunMax()) |
| 33 | { |
| 34 | // The initial buffer size will default to either the default buffer size OR |
| 35 | // the size of an Ethernet message, whichever is larger. |
| 36 | AllocateBuffer(std::max(DEFAULT_BUFFER_SIZE, ETH_FRAME_LEN + 16 + ETH_FCS_LEN)); |
| 37 | } |
| 38 | |
| 39 | void ScsiController::Reset() |
| 40 | { |
nothing calls this directly
no outgoing calls
no test coverage detected