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

feat: split ports #25

Merged
merged 2 commits into from
Feb 19, 2024
Merged
Changes from all commits
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
16 changes: 9 additions & 7 deletions src/curp-command.proto
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ message ProposeId {
}

message Member {
uint64 id = 1;
string name = 2;
repeated string addrs = 3;
bool is_learner = 4;
uint64 id = 1;
string name = 2;
repeated string peer_urls = 3;
repeated string client_urls = 4;
bool is_learner = 5;
}

message CmdResult {
Expand Down Expand Up @@ -179,9 +180,10 @@ message ProposeConfChangeResponse {
}

message PublishRequest {
ProposeId propose_id = 1;
uint64 node_id = 2;
string name = 3;
ProposeId propose_id = 1;
uint64 node_id = 2;
string name = 3;
repeated string client_urls = 4;
}

message PublishResponse {}
Expand Down