| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- // Copyright 2017-2019 Espressif Systems (Shanghai) PTE LTD
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- #ifndef __ESP_TLS_ERROR_CAPTURE_INTERNAL_H__
- #define __ESP_TLS_ERROR_CAPTURE_INTERNAL_H__
- /**
- * Note: this is an implementation placeholder for error logger.
- * This version is internal to esp-tls component and only saves single esp_err of last occurred error
- */
- #ifdef __cplusplus
- extern "C" {
- #endif
- /**
- * Error tracker logging macro to enable mapping tracking errors internally
- * or using an external/global implementation
- */
- #define ESP_INT_EVENT_TRACKER_CAPTURE(h, type, code) esp_tls_internal_event_tracker_capture(h, type, code)
- /**
- * @brief Internal tracker capture error
- *
- * This implementation saves latest errors of available types
- *
- * @param[in] h esp-tls error handle
- * @param[in] err_type Specific error type
- * @param[int] code Error code to capture
- *
- */
- void esp_tls_internal_event_tracker_capture(esp_tls_error_handle_t h, uint32_t type, int code);
- /**
- * @brief Create internal tracker storage
- *
- * @return Error tracker handle if success or NULL if allocation error
- */
- esp_tls_error_handle_t esp_tls_internal_event_tracker_create(void);
- /**
- * @brief Destroy internal tracker storage
- *
- * @param[in] h esp-tls error handle
- */
- void esp_tls_internal_event_tracker_destroy(esp_tls_error_handle_t h);
- #ifdef __cplusplus
- }
- #endif
- #endif //__ESP_TLS_ERROR_CAPTURE_INTERNAL_H__
|