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