* apps/include/netutils/icmp_ping.h
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership. The
* ASF licenses this file to you 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 __APPS_INCLUDE_NETUTILS_ICMP_PING_H
#define __APPS_INCLUDE_NETUTILS_ICMP_PING_H
* Included Files
****************************************************************************/
#include <netinet/in.h>
* Pre-processor Definitions
****************************************************************************/
#define ICMP_I_OK 0
#define ICMP_I_BEGIN 1
#define ICMP_I_ROUNDTRIP 2
#define ICMP_I_FINISH 3
#define ICMP_E_HOSTIP -1
#define ICMP_E_MEMORY -3
#define ICMP_E_SOCKET -5
#define ICMP_E_SENDTO -7
#define ICMP_E_SENDSMALL -9
#define ICMP_E_POLL -11
#define ICMP_E_RECVFROM -13
#define ICMP_E_RECVSMALL -15
#define ICMP_E_BINDDEV -17
#define ICMP_E_FILTER -19
#define ICMP_W_TIMEOUT -2
#define ICMP_W_IDDIFF -4
#define ICMP_W_SEQNOBIG -6
#define ICMP_W_SEQNOSMALL -8
#define ICMP_W_RECVBIG -10
#define ICMP_W_DATADIFF -12
#define ICMP_W_TYPE -14
* Public Types
****************************************************************************/
struct ping_result_s;
struct ping_info_s
{
FAR const char *hostname;
#ifdef CONFIG_NET_BINDTODEVICE
FAR const char *devname;
#endif
uint16_t count;
uint16_t datalen;
uint16_t delay;
uint16_t timeout;
FAR void *priv;
void (*callback)(FAR const struct ping_result_s *result);
};
struct ping_result_s
{
int code;
long extra;
struct in_addr dest;
uint16_t nrequests;
uint16_t nreplies;
uint16_t outsize;
uint16_t id;
uint16_t seqno;
FAR const struct ping_info_s *info;
};
* Public Function Prototypes
****************************************************************************/
#undef EXTERN
#if defined(__cplusplus)
#define EXTERN extern "C"
extern "C"
{
#else
#define EXTERN extern
#endif
void icmp_ping(FAR const struct ping_info_s *info);
#undef EXTERN
#ifdef __cplusplus
}
#endif
#endif