VCM commit prepare

This commit is contained in:
emanuel 2023-01-19 18:51:10 +00:00
parent 84dbe1e37b
commit 583b591d40
1 changed files with 8 additions and 0 deletions

View File

@ -861,6 +861,10 @@ static void intersection_check(VCM_t* vcm, mc_neighbour_s* neighbour) {
}
}
static int vcm_check_handle_commit(VCM_t* vcm, mc_neighbour_s* neighbour) {
return 0;
}
int vcm_check(VCM_t* vcm) {
coordination_t* coordination = &facilities.coordination;
@ -910,6 +914,10 @@ int vcm_check(VCM_t* vcm) {
vcm_check_handle_reply(vcm, neighbour);
break;
case CoordinationNegotiation_PR_commit:
vcm_check_handle_commit(vcm, neighbour);
break;
default:
break;
}