20 lines
266 B
C
20 lines
266 B
C
|
/** @file
|
||
|
*
|
||
|
* @brief DHCPv4 handler.
|
||
|
*
|
||
|
* This is not to be included by the application.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2017 ARM Ltd.
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
#ifndef __INTERNAL_DHCPV4_H
|
||
|
#define __INTERNAL_DHCPV4_H
|
||
|
|
||
|
int dhcpv4_init(void);
|
||
|
|
||
|
#endif
|