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
4 changes: 4 additions & 0 deletions RELNOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -811,3 +811,7 @@ Version 4.30.0 - 2024-12-09

Version 4.30.1 - 2025-01-14
* Added base64 decode input size check.

Version 4.31.0 - 2025-04-25
* Updated to support 603+.

1 change: 1 addition & 0 deletions include/osp/osperrno.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@
#define OSPC_ERR_TRAN_CALLED_FILTERING (OSPC_ERR_TRAN_MODULE + 515)
#define OSPC_ERR_TRAN_GLOBAL_ERROR (OSPC_ERR_TRAN_MODULE + 516)
#define OSPC_ERR_TRAN_DECLINE (OSPC_ERR_TRAN_MODULE + 517)
#define OSPC_ERR_TRAN_NETWORK_BLOCKED (OSPC_ERR_TRAN_MODULE + 518)

#define OSPC_ERR_SEC_MODULE 12000
#define OSPC_ERR_SEC_NOT_ENOUGH_SPACE_FOR_COPY (OSPC_ERR_SEC_MODULE + 10)
Expand Down
2 changes: 1 addition & 1 deletion include/osp/osplibversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#define _OSPLIBVERSION_H

#define OSP_CLIENT_TOOLKIT_VERSION_MAJOR 4
#define OSP_CLIENT_TOOLKIT_VERSION_MINOR 30
#define OSP_CLIENT_TOOLKIT_VERSION_MINOR 31
#define OSP_CLIENT_TOOLKIT_VERSION_BUGFIX 0

#endif /* _OSPLIBVERSION_H */
3 changes: 3 additions & 0 deletions src/osputils.c
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,9 @@ int OSPPUtilGetErrorFromStatus(
case 603:
errorcode = OSPC_ERR_TRAN_DECLINE;
break;
case 9603:
errorcode = OSPC_ERR_TRAN_NETWORK_BLOCKED;
break;
case 999:
errorcode = OSPC_ERR_TRAN_GENERIC_FAILURE;
break;
Expand Down