2007-09-08 21:50:59 +02:00
|
|
|
/****************************************************************************
|
2014-06-29 01:25:18 +02:00
|
|
|
* net/socket/net_timeo.c
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
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
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
2021-02-19 12:45:37 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-09-08 21:50:59 +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.
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2014-08-07 20:35:24 +02:00
|
|
|
#if defined(CONFIG_NET) && defined(CONFIG_NET_SOCKOPTS)
|
2007-09-08 21:50:59 +02:00
|
|
|
|
2009-12-15 16:57:25 +01:00
|
|
|
#include <stdint.h>
|
2007-11-17 15:28:10 +01:00
|
|
|
#include <debug.h>
|
|
|
|
|
2007-09-09 13:58:50 +02:00
|
|
|
#include <nuttx/clock.h>
|
2007-11-17 15:28:10 +01:00
|
|
|
|
2014-06-29 01:25:18 +02:00
|
|
|
#include "socket/socket.h"
|
2007-09-08 21:50:59 +02:00
|
|
|
|
|
|
|
/****************************************************************************
|
2015-01-19 23:02:56 +01:00
|
|
|
* Public Functions
|
2007-09-08 21:50:59 +02:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
2017-04-22 00:33:14 +02:00
|
|
|
* Name: net_timeo
|
2007-09-08 21:50:59 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Check if a timeout has elapsed. This can be called from a socket poll
|
|
|
|
* function to determine if a timeout has occurred.
|
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2007-09-08 21:50:59 +02:00
|
|
|
* start_time Timeout start time in system clock ticks
|
|
|
|
* timeout Timeout value in deciseconds.
|
|
|
|
*
|
|
|
|
* Returned Value:
|
|
|
|
* 0 (FALSE) if not timeout; 1 (TRUE) if timeout
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2018-06-16 20:16:13 +02:00
|
|
|
int net_timeo(clock_t start_time, socktimeo_t timeo)
|
2007-09-08 21:50:59 +02:00
|
|
|
{
|
2018-06-16 20:16:13 +02:00
|
|
|
clock_t timeo_ticks = DSEC2TICK(timeo);
|
2020-05-04 16:15:10 +02:00
|
|
|
clock_t elapsed = clock_systime_ticks() - start_time;
|
2007-11-17 15:28:10 +01:00
|
|
|
|
2007-09-08 21:50:59 +02:00
|
|
|
if (elapsed >= timeo_ticks)
|
|
|
|
{
|
|
|
|
return TRUE;
|
|
|
|
}
|
2017-04-01 00:33:21 +02:00
|
|
|
|
2007-09-08 21:50:59 +02:00
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2014-08-07 20:35:24 +02:00
|
|
|
#endif /* CONFIG_NET && CONFIG_NET_SOCKOPTS */
|