Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
dhcpv4.h
Go to the documentation of this file.
1
5/*
6 * Copyright (c) 2016 Intel Corporation
7 *
8 * SPDX-License-Identifier: Apache-2.0
9 */
10
11#ifndef ZEPHYR_INCLUDE_NET_DHCPV4_H_
12#define ZEPHYR_INCLUDE_NET_DHCPV4_H_
13
14#include <zephyr/sys/slist.h>
15#include <zephyr/types.h>
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
35enum net_dhcpv4_state {
36 NET_DHCPV4_DISABLED,
37 NET_DHCPV4_INIT,
38 NET_DHCPV4_SELECTING,
39 NET_DHCPV4_REQUESTING,
40 NET_DHCPV4_RENEWING,
41 NET_DHCPV4_REBINDING,
42 NET_DHCPV4_BOUND,
43} __packed;
44
65};
66
67#ifdef CONFIG_NET_DHCPV4_OPTION_CALLBACKS
68
69struct net_dhcpv4_option_callback;
70
86typedef void (*net_dhcpv4_option_callback_handler_t)(struct net_dhcpv4_option_callback *cb,
87 size_t length,
88 enum net_dhcpv4_msg_type msg_type,
89 struct net_if *iface);
90
103struct net_dhcpv4_option_callback {
107 sys_snode_t node;
108
110 net_dhcpv4_option_callback_handler_t handler;
111
113 uint8_t option;
114
116 size_t max_length;
117
121 void *data;
122};
123
134static inline void net_dhcpv4_init_option_callback(struct net_dhcpv4_option_callback *callback,
135 net_dhcpv4_option_callback_handler_t handler,
136 uint8_t option,
137 void *data,
138 size_t max_length)
139{
140 __ASSERT(callback, "Callback pointer should not be NULL");
141 __ASSERT(handler, "Callback handler pointer should not be NULL");
142 __ASSERT(data, "Data pointer should not be NULL");
143
144 callback->handler = handler;
145 callback->option = option;
146 callback->data = data;
147 callback->max_length = max_length;
148}
149
155int net_dhcpv4_add_option_callback(struct net_dhcpv4_option_callback *cb);
156
162int net_dhcpv4_remove_option_callback(struct net_dhcpv4_option_callback *cb);
163
164#endif /* CONFIG_NET_DHCPV4_OPTION_CALLBACKS */
165
175void net_dhcpv4_start(struct net_if *iface);
176
186void net_dhcpv4_stop(struct net_if *iface);
187
197void net_dhcpv4_restart(struct net_if *iface);
198
206const char *net_dhcpv4_state_name(enum net_dhcpv4_state state);
207
217
222#ifdef __cplusplus
223}
224#endif
225
226#endif /* ZEPHYR_INCLUDE_NET_DHCPV4_H_ */
const char * net_dhcpv4_msg_type_name(enum net_dhcpv4_msg_type msg_type)
Return a text representation of the msg_type.
void net_dhcpv4_restart(struct net_if *iface)
Restart DHCPv4 client on an iface.
void net_dhcpv4_stop(struct net_if *iface)
Stop DHCPv4 client on an iface.
net_dhcpv4_msg_type
DHCPv4 message types.
Definition: dhcpv4.h:56
void net_dhcpv4_start(struct net_if *iface)
Start DHCPv4 client on an iface.
@ NET_DHCPV4_MSG_TYPE_REQUEST
Definition: dhcpv4.h:59
@ NET_DHCPV4_MSG_TYPE_ACK
Definition: dhcpv4.h:61
@ NET_DHCPV4_MSG_TYPE_OFFER
Definition: dhcpv4.h:58
@ NET_DHCPV4_MSG_TYPE_RELEASE
Definition: dhcpv4.h:63
@ NET_DHCPV4_MSG_TYPE_NAK
Definition: dhcpv4.h:62
@ NET_DHCPV4_MSG_TYPE_DISCOVER
Definition: dhcpv4.h:57
@ NET_DHCPV4_MSG_TYPE_INFORM
Definition: dhcpv4.h:64
@ NET_DHCPV4_MSG_TYPE_DECLINE
Definition: dhcpv4.h:60
struct _snode sys_snode_t
Single-linked list node structure.
Definition: slist.h:39
state
Definition: parser_state.h:29
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Network Interface structure.
Definition: net_if.h:595