aboutsummaryrefslogtreecommitdiffstats
path: root/Heimdall/heimdall/source/EndPhoneFileTransferPacket.h
diff options
context:
space:
mode:
Diffstat (limited to 'Heimdall/heimdall/source/EndPhoneFileTransferPacket.h')
-rw-r--r--Heimdall/heimdall/source/EndPhoneFileTransferPacket.h86
1 files changed, 0 insertions, 86 deletions
diff --git a/Heimdall/heimdall/source/EndPhoneFileTransferPacket.h b/Heimdall/heimdall/source/EndPhoneFileTransferPacket.h
deleted file mode 100644
index 24650a2..0000000
--- a/Heimdall/heimdall/source/EndPhoneFileTransferPacket.h
+++ /dev/null
@@ -1,86 +0,0 @@
-/* Copyright (c) 2010 Benjamin Dobell, Glass Echidna
-
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
-
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
-
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.*/
-
-#ifndef ENDPHONEFILETRANSFERPACKET_H
-#define ENDPHONEFILETRANSFERPACKET_H
-
-// Heimdall
-#include "EndFileTransferPacket.h"
-
-namespace Heimdall
-{
- class EndPhoneFileTransferPacket : public EndFileTransferPacket
- {
- public:
-
- enum
- {
- kFilePrimaryBootloader = 0x00,
- kFilePit = 0x01, // New 1.1 - Don't flash the pit this way!
- kFileSecondaryBootloader = 0x03,
- kFileSecondaryBootloaderBackup = 0x04, // New 1.1
- kFileKernel = 0x06,
- kFileRecovery = 0x07, // New 1.1
- kFileEfs = 0x14, // New 1.1
- kFileParamLfs = 0x15,
- kFileFactoryFilesystem = 0x16,
- kFileDatabaseData = 0x17,
- kFileCache = 0x18,
-
- kFileModem = 0x0B // New 1.1 - Kies flashes the modem this way rather than using the EndModemFileTransferPacket.
- };
-
- private:
-
- unsigned int fileIdentifier;
- unsigned int endOfFile;
-
- public:
-
- EndPhoneFileTransferPacket(unsigned int partialPacketLength, unsigned int lastFullPacketIndex, unsigned short unknown1,
- unsigned int unknown2, unsigned int fileIdentifier, bool endOfFile)
- : EndFileTransferPacket(EndFileTransferPacket::kDestinationPhone, partialPacketLength,
- lastFullPacketIndex, unknown1, unknown2)
- {
- this->fileIdentifier = fileIdentifier;
- this->endOfFile = (endOfFile) ? 1 : 0;
- }
-
- unsigned int GetFileIdentifier(void)
- {
- return (fileIdentifier);
- }
-
- bool IsEndOfFile(void) const
- {
- return (endOfFile == 1);
- }
-
- void Pack(void)
- {
- EndFileTransferPacket::Pack();
-
- PackInteger(EndFileTransferPacket::kDataSize, fileIdentifier);
- PackInteger(EndFileTransferPacket::kDataSize + 4, endOfFile);
- }
- };
-}
-
-#endif