/* * @project The CERN Tape Archive (CTA) * @copyright Copyright(C) 2003-2021 CERN * @license This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ #include "castor/tape/tapeserver/daemon/DataTransferConfig.hpp" //------------------------------------------------------------------------------ // constructor //------------------------------------------------------------------------------ castor::tape::tapeserver::daemon::DataTransferConfig::DataTransferConfig() throw(): bufsz(0), nbBufs(0), bulkRequestMigrationMaxBytes(0), bulkRequestMigrationMaxFiles(0), bulkRequestRecallMaxBytes(0), bulkRequestRecallMaxFiles(0), maxBytesBeforeFlush(0), maxFilesBeforeFlush(0), nbDiskThreads(0), useLbp(false), useRAO(false), externalEncryptionKeyScript(""), fetchEosFreeSpaceScript(""){}