2014-05-30 21:32:10 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* net/icmp/icmp_poll.c
|
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* 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
|
2014-05-30 21:32:10 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2014-05-30 21:32:10 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* 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.
|
2014-05-30 21:32:10 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2019-03-19 16:43:32 +01:00
|
|
|
#if defined(CONFIG_NET) && defined(CONFIG_NET_ICMP) && \
|
|
|
|
defined(CONFIG_NET_ICMP_SOCKET)
|
2014-05-30 21:32:10 +02:00
|
|
|
|
|
|
|
#include <debug.h>
|
|
|
|
|
2014-06-24 16:53:28 +02:00
|
|
|
#include <nuttx/net/netconfig.h>
|
2014-06-24 17:28:44 +02:00
|
|
|
#include <nuttx/net/netdev.h>
|
2014-06-26 17:32:39 +02:00
|
|
|
#include <nuttx/net/icmp.h>
|
2014-05-30 21:32:10 +02:00
|
|
|
|
2014-06-29 02:07:02 +02:00
|
|
|
#include "devif/devif.h"
|
2014-07-05 03:13:08 +02:00
|
|
|
#include "icmp/icmp.h"
|
2014-05-30 21:32:10 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2014-06-25 17:12:47 +02:00
|
|
|
* Name: icmp_poll
|
2014-05-30 21:32:10 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2017-10-23 16:45:12 +02:00
|
|
|
* Poll a device "connection" structure for availability of ICMP TX data
|
2014-05-30 21:32:10 +02:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2019-03-19 16:43:32 +01:00
|
|
|
* dev - The device driver structure to use in the send operation
|
|
|
|
* conn - A pointer to the ICMP connection structure
|
2014-05-30 21:32:10 +02:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2014-05-30 21:32:10 +02:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
2017-08-29 23:08:38 +02:00
|
|
|
* The network is locked.
|
2021-10-02 02:47:08 +02:00
|
|
|
* dev is not NULL.
|
|
|
|
* conn is not NULL.
|
|
|
|
* The connection (conn) is bound to the polling device (dev).
|
2014-05-30 21:32:10 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2019-03-19 16:43:32 +01:00
|
|
|
void icmp_poll(FAR struct net_driver_s *dev, FAR struct icmp_conn_s *conn)
|
2014-05-30 21:32:10 +02:00
|
|
|
{
|
2021-10-02 02:47:08 +02:00
|
|
|
DEBUGASSERT(dev != NULL && conn != NULL && dev == conn->dev);
|
|
|
|
|
2014-05-30 21:32:10 +02:00
|
|
|
/* Setup for the application callback */
|
|
|
|
|
2014-11-15 20:13:23 +01:00
|
|
|
dev->d_appdata = &dev->d_buf[NET_LL_HDRLEN(dev) + IPICMP_HDRLEN];
|
2014-05-30 21:32:10 +02:00
|
|
|
dev->d_len = 0;
|
|
|
|
dev->d_sndlen = 0;
|
|
|
|
|
|
|
|
/* Perform the application callback */
|
|
|
|
|
2022-08-25 15:17:57 +02:00
|
|
|
devif_conn_event(dev, ICMP_POLL, conn->sconn.list);
|
2014-05-30 21:32:10 +02:00
|
|
|
}
|
|
|
|
|
2017-10-23 16:45:12 +02:00
|
|
|
#endif /* CONFIG_NET && CONFIG_NET_ICMP && CONFIG_NET_ICMP_SOCKET */
|