mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
44 lines
881 B
C
44 lines
881 B
C
/*
|
|
* Copyright (C) 2017 Simon Brummer
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup net_gnrc_tcp TCP
|
|
* @ingroup net_gnrc
|
|
* @brief RIOT's tcp implementation for the gnrc stack
|
|
*
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Gnrc TCP's event processing loop delarations
|
|
*
|
|
* @author Simon Brummer <simon.brummer@posteo.de>
|
|
*/
|
|
|
|
#ifndef GNRC_TCP_INTERNAL_EVENTLOOP_H
|
|
#define GNRC_TCP_INTERNAL_EVENTLOOP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief TCP's mein processing thread.
|
|
*
|
|
* @param[in] arg arguments, unused
|
|
*
|
|
* @return Never returns, its an endless loop
|
|
*/
|
|
void *_event_loop(__attribute__((unused)) void *arg);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* GNRC_TCP_INTERNAL_EVENTLOOP_H */
|
|
/** @} */
|