Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

File permission transfer #155

Closed
wants to merge 18 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Protocol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const int Protocol::INCREMENTAL_TAG_VERIFICATION_VERSION = 25;
const int Protocol::DELETE_CMD_VERSION = 26;
const int Protocol::VARINT_CHANGE = 27;
const int Protocol::HEART_BEAT_VERSION = 29;
const int Protocol::PERIODIC_ENCRYPTION_IV_CHANGE_VERSION = 30;
const int Protocol::PRESERVE_PERMISSION = 31;

/* All methods of Protocol class are static (functions) */
Expand Down
2 changes: 2 additions & 0 deletions Protocol.h
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,8 @@ class Protocol {
static const int VARINT_CHANGE;
/// version from which heart-beat was introduced
static const int HEART_BEAT_VERSION;
/// version from which wdt started to change encryption iv periodically
static const int PERIODIC_ENCRYPTION_IV_CHANGE_VERSION;
/// version from which file permission is preserved during transfer
static const int PRESERVE_PERMISSION;

Expand Down
2 changes: 1 addition & 1 deletion WdtConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#define WDT_VERSION_MINOR 31
#define WDT_VERSION_BUILD 1703290
// Add -fbcode to version str
#define WDT_VERSION_STR "1.31.1703270-fbcode"
#define WDT_VERSION_STR "1.31.1703290-fbcode"
// Tie minor and proto version
#define WDT_PROTOCOL_VERSION WDT_VERSION_MINOR

Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.