Skip to content
Merged
Show file tree
Hide file tree
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
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/challenge.c
Original file line number Diff line number Diff line change
Expand Up @@ -1245,10 +1245,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -3249,10 +3251,12 @@ static void req_challenge_case20(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/end_session.c
Original file line number Diff line number Diff line change
Expand Up @@ -553,10 +553,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -1422,10 +1424,12 @@ static void req_end_session_case10(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -864,10 +864,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -1730,10 +1732,12 @@ static void libspdm_test_requester_get_capabilities_err_case29(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/error_test/get_digests_err.c
Original file line number Diff line number Diff line change
Expand Up @@ -634,10 +634,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -1517,10 +1519,12 @@ static void libspdm_test_requester_get_digests_err_case22(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2179,10 +2179,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -4349,10 +4351,12 @@ static void libspdm_test_requester_get_measurements_err_case33(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/error_test/get_version_err.c
Original file line number Diff line number Diff line change
Expand Up @@ -381,10 +381,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -781,10 +783,12 @@ static void libspdm_test_requester_get_version_err_case14(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/error_test/key_exchange_err.c
Original file line number Diff line number Diff line change
Expand Up @@ -1172,10 +1172,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -5015,10 +5017,12 @@ static void libspdm_test_requester_key_exchange_err_case10(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/finish.c
Original file line number Diff line number Diff line change
Expand Up @@ -630,10 +630,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -2367,10 +2369,12 @@ static void req_finish_case10(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
6 changes: 4 additions & 2 deletions unit_test/test_spdm_requester/get_capabilities.c
Original file line number Diff line number Diff line change
Expand Up @@ -888,10 +888,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/get_certificate.c
Original file line number Diff line number Diff line change
Expand Up @@ -1048,10 +1048,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -3311,10 +3313,12 @@ static void req_get_certificate_case16(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
6 changes: 4 additions & 2 deletions unit_test/test_spdm_requester/get_digests.c
Original file line number Diff line number Diff line change
Expand Up @@ -706,10 +706,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
12 changes: 8 additions & 4 deletions unit_test/test_spdm_requester/get_measurements.c
Original file line number Diff line number Diff line change
Expand Up @@ -2421,10 +2421,12 @@ static libspdm_return_t receive_message(
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down Expand Up @@ -5325,10 +5327,12 @@ static void req_get_measurements_case33(void **state) {
if(error_code == SPDM_ERROR_CODE_BUSY) { /*busy is treated in cases 5 and 6*/
error_code = SPDM_ERROR_CODE_UNEXPECTED_REQUEST;
}
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) { /*skip some reserved error codes (0d to 3e)*/
/* skip some reserved error codes (0d to 3e) */
if(error_code == LIBSPDM_ERROR_CODE_RESERVED_0D) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_3F;
}
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) { /*skip response not ready, request resync, and some reserved codes (44 to fc)*/
/* skip response not ready, request resync, and some reserved codes (44 to fc) */
if(error_code == SPDM_ERROR_CODE_RESPONSE_NOT_READY) {
error_code = LIBSPDM_ERROR_CODE_RESERVED_FD;
}
}
Expand Down
Loading