| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- /*
- * SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #pragma once
- #ifdef __cplusplus
- extern "C" {
- #endif
- #include <stdint.h>
- #include "esp_err.h"
- #include "lwip/ip_addr.h"
- /**
- * @brief Type of "ping" session handle
- *
- */
- typedef void *esp_ping_handle_t;
- /**
- * @brief Type of "ping" callback functions
- *
- */
- typedef struct {
- /**
- * @brief arguments for callback functions
- *
- */
- void *cb_args;
- /**
- * @brief Invoked by internal ping thread when received ICMP echo reply packet
- *
- */
- void (*on_ping_success)(esp_ping_handle_t hdl, void *args);
- /**
- * @brief Invoked by internal ping thread when receive ICMP echo reply packet timeout
- *
- */
- void (*on_ping_timeout)(esp_ping_handle_t hdl, void *args);
- /**
- * @brief Invoked by internal ping thread when a ping session is finished
- *
- */
- void (*on_ping_end)(esp_ping_handle_t hdl, void *args);
- } esp_ping_callbacks_t;
- /**
- * @brief Type of "ping" configuration
- *
- */
- typedef struct {
- uint32_t count; /*!< A "ping" session contains count procedures */
- uint32_t interval_ms; /*!< Milliseconds between each ping procedure */
- uint32_t timeout_ms; /*!< Timeout value (in milliseconds) of each ping procedure */
- uint32_t data_size; /*!< Size of the data next to ICMP packet header */
- int tos; /*!< Type of Service, a field specified in the IP header */
- int ttl; /*!< Time to Live,a field specified in the IP header */
- ip_addr_t target_addr; /*!< Target IP address, either IPv4 or IPv6 */
- uint32_t task_stack_size; /*!< Stack size of internal ping task */
- uint32_t task_prio; /*!< Priority of internal ping task */
- uint32_t interface; /*!< Netif index, interface=0 means NETIF_NO_INDEX*/
- } esp_ping_config_t;
- /**
- * @brief Default ping configuration
- *
- */
- #define ESP_PING_DEFAULT_CONFIG() \
- { \
- .count = 5, \
- .interval_ms = 1000, \
- .timeout_ms = 1000, \
- .data_size = 64, \
- .tos = 0, \
- .ttl = IP_DEFAULT_TTL, \
- .target_addr = *(IP_ANY_TYPE), \
- .task_stack_size = ESP_TASK_PING_STACK, \
- .task_prio = 2, \
- .interface = 0,\
- }
- #define ESP_PING_COUNT_INFINITE (0) /*!< Set ping count to zero will ping target infinitely */
- /**
- * @brief Profile of ping session
- *
- */
- typedef enum {
- ESP_PING_PROF_SEQNO, /*!< Sequence number of a ping procedure */
- ESP_PING_PROF_TOS, /*!< Type of service of a ping procedure */
- ESP_PING_PROF_TTL, /*!< Time to live of a ping procedure */
- ESP_PING_PROF_REQUEST, /*!< Number of request packets sent out */
- ESP_PING_PROF_REPLY, /*!< Number of reply packets received */
- ESP_PING_PROF_IPADDR, /*!< IP address of replied target */
- ESP_PING_PROF_SIZE, /*!< Size of received packet */
- ESP_PING_PROF_TIMEGAP, /*!< Elapsed time between request and reply packet */
- ESP_PING_PROF_DURATION /*!< Elapsed time of the whole ping session */
- } esp_ping_profile_t;
- /**
- * @brief Create a ping session
- *
- * @param config ping configuration
- * @param cbs a bunch of callback functions invoked by internal ping task
- * @param hdl_out handle of ping session
- * @return
- * - ESP_ERR_INVALID_ARG: invalid parameters (e.g. configuration is null, etc)
- * - ESP_ERR_NO_MEM: out of memory
- * - ESP_FAIL: other internal error (e.g. socket error)
- * - ESP_OK: create ping session successfully, user can take the ping handle to do follow-on jobs
- */
- esp_err_t esp_ping_new_session(const esp_ping_config_t *config, const esp_ping_callbacks_t *cbs, esp_ping_handle_t *hdl_out);
- /**
- * @brief Delete a ping session
- *
- * @param hdl handle of ping session
- * @return
- * - ESP_ERR_INVALID_ARG: invalid parameters (e.g. ping handle is null, etc)
- * - ESP_OK: delete ping session successfully
- */
- esp_err_t esp_ping_delete_session(esp_ping_handle_t hdl);
- /**
- * @brief Start the ping session
- *
- * @param hdl handle of ping session
- * @return
- * - ESP_ERR_INVALID_ARG: invalid parameters (e.g. ping handle is null, etc)
- * - ESP_OK: start ping session successfully
- */
- esp_err_t esp_ping_start(esp_ping_handle_t hdl);
- /**
- * @brief Stop the ping session
- *
- * @param hdl handle of ping session
- * @return
- * - ESP_ERR_INVALID_ARG: invalid parameters (e.g. ping handle is null, etc)
- * - ESP_OK: stop ping session successfully
- */
- esp_err_t esp_ping_stop(esp_ping_handle_t hdl);
- /**
- * @brief Get runtime profile of ping session
- *
- * @param hdl handle of ping session
- * @param profile type of profile
- * @param data profile data
- * @param size profile data size
- * @return
- * - ESP_ERR_INVALID_ARG: invalid parameters (e.g. ping handle is null, etc)
- * - ESP_ERR_INVALID_SIZE: the actual profile data size doesn't match the "size" parameter
- * - ESP_OK: get profile successfully
- */
- esp_err_t esp_ping_get_profile(esp_ping_handle_t hdl, esp_ping_profile_t profile, void *data, uint32_t size);
- #ifdef __cplusplus
- }
- #endif
|