| RSA BSAFE Micro Edition Suite |
Streamlined security for mobile and embedded devices |
 
![]() |
Defines | |
| #define | ERR_free_strings() |
| A macro defined as nothing in order to remove the function altogether. | |
| #define | ERR_remove_state(pid) |
| A macro to clear the stored error buffer. | |
| #define | ERR_get_state() |
| A macro defined as nothing in order to remove the function altogether. | |
Functions | |
| ERR_put_error (int lib, int func, int reason, char *file, int line) | |
| Places an error from the library lib for the function func with the reason reason in the global error stack. More... | |
| ERR_clear_error () | |
| Clears the error buffer and discards all unread errors. | |
| ERR_get_error () | |
| Retrieves the latest error from the error stack. More... | |
| ERR_peek_error () | |
| Retrieves the latest error from the error stack. More... | |
| ERR_print_errors_fp (FILE *fp) | |
| Prints the error stack to the file pointer fp. More... | |
| ERR_print_errors (BIO *bio) | |
| Prints the error stack to the BIO bio. More... | |
|
|
Retrieves the latest error from the error stack. This is a destructive operation since the error is removed from the stack at the same time. Other errors that may also exist in the stack are not affected.
|
|
|
Retrieves the latest error from the error stack. This is a non-destructive operation since the error remains on the stack. Other errors that may also exist in the stack are not affected.
|
|
|
Prints the error stack to the BIO bio.
|
|
|
Prints the error stack to the file pointer fp.
|
|