Changeset 2945
- Timestamp:
- 26/04/2011 19:44:26 (13 months ago)
- Location:
- box/trunk
- Files:
-
- 1 deleted
- 2 edited
- 27 moved
-
bin/bbstored/Makefile.extra (deleted)
-
lib/backupstore/BackupClientFileAttributes.cpp (moved) (moved from box/trunk/lib/backupclient/BackupClientFileAttributes.cpp)
-
lib/backupstore/BackupClientFileAttributes.h (moved) (moved from box/trunk/lib/backupclient/BackupClientFileAttributes.h)
-
lib/backupstore/BackupCommands.cpp (moved) (moved from box/trunk/bin/bbstored/BackupCommands.cpp)
-
lib/backupstore/BackupConstants.h (moved) (moved from box/trunk/bin/bbstored/BackupConstants.h)
-
lib/backupstore/BackupStoreConstants.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreConstants.h)
-
lib/backupstore/BackupStoreContext.cpp (moved) (moved from box/trunk/bin/bbstored/BackupStoreContext.cpp) (2 diffs)
-
lib/backupstore/BackupStoreContext.h (moved) (moved from box/trunk/bin/bbstored/BackupStoreContext.h)
-
lib/backupstore/BackupStoreDirectory.cpp (moved) (moved from box/trunk/lib/backupclient/BackupStoreDirectory.cpp)
-
lib/backupstore/BackupStoreDirectory.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreDirectory.h)
-
lib/backupstore/BackupStoreException.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreException.h)
-
lib/backupstore/BackupStoreException.txt (moved) (moved from box/trunk/lib/backupclient/BackupStoreException.txt)
-
lib/backupstore/BackupStoreFile.cpp (moved) (moved from box/trunk/lib/backupclient/BackupStoreFile.cpp)
-
lib/backupstore/BackupStoreFile.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreFile.h)
-
lib/backupstore/BackupStoreFileCryptVar.cpp (moved) (moved from box/trunk/lib/backupclient/BackupStoreFileCryptVar.cpp)
-
lib/backupstore/BackupStoreFileCryptVar.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreFileCryptVar.h)
-
lib/backupstore/BackupStoreFileEncodeStream.cpp (moved) (moved from box/trunk/lib/backupclient/BackupStoreFileEncodeStream.cpp)
-
lib/backupstore/BackupStoreFileEncodeStream.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreFileEncodeStream.h)
-
lib/backupstore/BackupStoreFileRevDiff.cpp (moved) (moved from box/trunk/lib/backupclient/BackupStoreFileRevDiff.cpp)
-
lib/backupstore/BackupStoreFileWire.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreFileWire.h)
-
lib/backupstore/BackupStoreFilename.cpp (moved) (moved from box/trunk/lib/backupclient/BackupStoreFilename.cpp)
-
lib/backupstore/BackupStoreFilename.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreFilename.h)
-
lib/backupstore/BackupStoreFilenameClear.cpp (moved) (moved from box/trunk/lib/backupclient/BackupStoreFilenameClear.cpp)
-
lib/backupstore/BackupStoreFilenameClear.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreFilenameClear.h)
-
lib/backupstore/BackupStoreObjectMagic.h (moved) (moved from box/trunk/lib/backupclient/BackupStoreObjectMagic.h)
-
lib/backupstore/Makefile.extra (moved) (moved from box/trunk/lib/backupclient/Makefile.extra) (1 diff)
-
lib/backupstore/RunStatusProvider.h (moved) (moved from box/trunk/lib/backupclient/RunStatusProvider.h)
-
lib/backupstore/backupprotocol.txt (moved) (moved from box/trunk/bin/bbstored/backupprotocol.txt)
-
modules.txt (modified) (1 diff)
-
test/bbackupd/Makefile.extra (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/lib/backupstore/BackupStoreContext.cpp
r2728 r2945 14 14 #include "BackupConstants.h" 15 15 #include "BackupStoreContext.h" 16 #include "BackupStoreDaemon.h"17 16 #include "BackupStoreDirectory.h" 18 17 #include "BackupStoreException.h" … … 29 28 #include "StoreStructure.h" 30 29 30 class BackupStoreDaemon; 31 31 32 #include "MemLeakFindOn.h" 32 33 33 34 34 // Maximum number of directories to keep in the cache -
box/trunk/lib/backupstore/Makefile.extra
r2598 r2945 2 2 MAKEPROTOCOL = ../../lib/server/makeprotocol.pl 3 3 4 GEN_CMD_SRV = $(MAKEPROTOCOL) Client ../../bin/bbstored/backupprotocol.txt 4 GEN_CMD_CLI = $(MAKEPROTOCOL) Client backupprotocol.txt 5 GEN_CMD_SRV = $(MAKEPROTOCOL) Server backupprotocol.txt 5 6 6 7 # AUTOGEN SEEDING 7 autogen_BackupProtocolClient.cpp autogen_BackupProtocolClient.h: $(MAKEPROTOCOL) ../../bin/bbstored/backupprotocol.txt 8 autogen_BackupProtocolClient.cpp autogen_BackupProtocolClient.h: $(MAKEPROTOCOL) backupprotocol.txt 9 $(_PERL) $(GEN_CMD_CLI) 10 11 # AUTOGEN SEEDING 12 autogen_BackupProtocolServer.cpp autogen_BackupProtocolServer.h: $(MAKEPROTOCOL) backupprotocol.txt 8 13 $(_PERL) $(GEN_CMD_SRV) 9 10 14 11 15 MAKEEXCEPTION = ../../lib/common/makeexception.pl -
box/trunk/modules.txt
r2934 r2945 26 26 # Backup system 27 27 28 lib/backup client lib/serverlib/crypto lib/compress29 lib/backup store lib/server lib/raidfile lib/backupclient28 lib/backupstore lib/server lib/raidfile lib/crypto lib/compress 29 lib/backupclient lib/backupstore 30 30 31 31 bin/bbackupobjdump lib/backupclient lib/backupstore -
box/trunk/test/bbackupd/Makefile.extra
r2233 r2945 10 10 ../../bin/bbstored/BBStoreDHousekeeping.o \ 11 11 ../../bin/bbstored/HousekeepStoreAccount.o \ 12 ../../ bin/bbstored/autogen_BackupProtocolServer.o \12 ../../lib/backupstore/autogen_BackupProtocolServer.o \ 13 13 ../../bin/bbstored/BackupCommands.o \ 14 14 ../../bin/bbstored/BackupStoreDaemon.o
Note: See TracChangeset
for help on using the changeset viewer.
