eth_worker_traceroute.c 159 B

12345678
  1. #include "eth_worker.h"
  2. #include <furi_hal.h>
  3. #include <traceroute.h>
  4. uint8_t traceroute_auto(uint8_t *adress)
  5. {
  6. return traceroute(PING_SOCKET, adress);
  7. }