Skip to content

Commit

Permalink
fix: reformat
Browse files Browse the repository at this point in the history
Signed-off-by: Xin Xu <[email protected]>
  • Loading branch information
shingoxx222 committed Nov 8, 2024
1 parent 0abdbd5 commit 8a54349
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions lib/ocpp/v201/charge_point.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3594,8 +3594,8 @@ void ChargePoint::handle_install_certificate_req(Call<InstallCertificateRequest>
const auto msg = call.msg;
InstallCertificateResponse response;

if ((msg.certificateType == InstallCertificateUseEnum::CSMSRootCertificate ||
msg.certificateType == InstallCertificateUseEnum::ManufacturerRootCertificate) &&
if ((msg.certificateType == InstallCertificateUseEnum::CSMSRootCertificate ||
msg.certificateType == InstallCertificateUseEnum::ManufacturerRootCertificate) &&
this->device_model->get_value<int>(ControllerComponentVariables::SecurityProfile) <= 1) {
response.status = InstallCertificateStatusEnum::Rejected;
response.statusInfo = StatusInfo();
Expand All @@ -3604,14 +3604,14 @@ void ChargePoint::handle_install_certificate_req(Call<InstallCertificateRequest>
response.statusInfo->additionalInfo = conversions::profile_validation_result_to_string(reason);
} else {
const auto result = this->evse_security->install_ca_certificate(
msg.certificate.get(), ocpp::evse_security_conversions::from_ocpp_v201(msg.certificateType));
msg.certificate.get(), ocpp::evse_security_conversions::from_ocpp_v201(msg.certificateType));
response.status = ocpp::evse_security_conversions::to_ocpp_v201(result);
if (response.status == InstallCertificateStatusEnum::Accepted) {
const auto& security_event = ocpp::security_events::RECONFIGURATIONOFSECURITYPARAMETERS;
std::string tech_info =
"Installed certificate: " + conversions::install_certificate_use_enum_to_string(msg.certificateType);
this->security_event_notification_req(CiString<50>(security_event), CiString<255>(tech_info), true,
utils::is_critical(security_event));
const auto& security_event = ocpp::security_events::RECONFIGURATIONOFSECURITYPARAMETERS;
std::string tech_info =
"Installed certificate: " + conversions::install_certificate_use_enum_to_string(msg.certificateType);
this->security_event_notification_req(CiString<50>(security_event), CiString<255>(tech_info), true,
utils::is_critical(security_event));
}
}
ocpp::CallResult<InstallCertificateResponse> call_result(response, call.uniqueId);
Expand Down

0 comments on commit 8a54349

Please sign in to comment.