1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/lwip/include/lwip.h
Alexandre Abadie bd816f3fb1
pkg/lwip: cleanup doxygen documentation
- Deduplicate lwip group definition
- Fix reference to sock instead of conn
2019-08-05 16:57:36 +02:00

40 lines
726 B
C

/*
* Copyright (C) 2015 Martine Lenders <mlenders@inf.fu-berlin.de>
*
* 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.
*/
/**
* @ingroup pkg_lwip
*
* @{
*
* @file
* @brief lwIP bootstrap definitions
*
* @author Martine Lenders <mlenders@inf.fu-berlin.de>
*/
#ifndef LWIP_H
#define LWIP_H
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Initializes lwIP stack.
*
* This initializes lwIP, i.e. all netdevs are added to as interfaces to the
* stack and the stack's thread is started.
*/
void lwip_bootstrap(void);
#ifdef __cplusplus
}
#endif
#endif /* LWIP_H */
/** @} */