Zephyr API Documentation  3.6.99
A Scalable Open Source RTOS
Loading...
Searching...
No Matches

DHCPv4. More...

Typedefs

typedef void(* net_dhcpv4_option_callback_handler_t) (struct net_dhcpv4_option_callback *cb, size_t length, enum net_dhcpv4_msg_type msg_type, struct net_if *iface)
 Define the application callback handler function signature.
 

Enumerations

enum  net_dhcpv4_msg_type {
  NET_DHCPV4_MSG_TYPE_DISCOVER = 1 , NET_DHCPV4_MSG_TYPE_OFFER = 2 , NET_DHCPV4_MSG_TYPE_REQUEST = 3 , NET_DHCPV4_MSG_TYPE_DECLINE = 4 ,
  NET_DHCPV4_MSG_TYPE_ACK = 5 , NET_DHCPV4_MSG_TYPE_NAK = 6 , NET_DHCPV4_MSG_TYPE_RELEASE = 7 , NET_DHCPV4_MSG_TYPE_INFORM = 8
}
 DHCPv4 message types. More...
 

Functions

static void net_dhcpv4_init_option_callback (struct net_dhcpv4_option_callback *callback, net_dhcpv4_option_callback_handler_t handler, uint8_t option, void *data, size_t max_length)
 Helper to initialize a struct net_dhcpv4_option_callback properly.
 
int net_dhcpv4_add_option_callback (struct net_dhcpv4_option_callback *cb)
 Add an application callback.
 
int net_dhcpv4_remove_option_callback (struct net_dhcpv4_option_callback *cb)
 Remove an application callback.
 
static void net_dhcpv4_init_option_vendor_callback (struct net_dhcpv4_option_callback *callback, net_dhcpv4_option_callback_handler_t handler, uint8_t option, void *data, size_t max_length)
 Helper to initialize a struct net_dhcpv4_option_callback for encapsulated vendor-specific options properly.
 
int net_dhcpv4_add_option_vendor_callback (struct net_dhcpv4_option_callback *cb)
 Add an application callback for encapsulated vendor-specific options.
 
int net_dhcpv4_remove_option_vendor_callback (struct net_dhcpv4_option_callback *cb)
 Remove an application callback for encapsulated vendor-specific options.
 
void net_dhcpv4_start (struct net_if *iface)
 Start DHCPv4 client on an iface.
 
void net_dhcpv4_stop (struct net_if *iface)
 Stop DHCPv4 client on an iface.
 
void net_dhcpv4_restart (struct net_if *iface)
 Restart DHCPv4 client on an iface.
 
const char * net_dhcpv4_msg_type_name (enum net_dhcpv4_msg_type msg_type)
 Return a text representation of the msg_type.
 

Detailed Description

DHCPv4.

Typedef Documentation

◆ net_dhcpv4_option_callback_handler_t

net_dhcpv4_option_callback_handler_t

#include <zephyr/net/dhcpv4.h>

Define the application callback handler function signature.

Parameters
cbOriginal struct net_dhcpv4_option_callback owning this handler
lengthThe length of data returned by the server. If this is greater than cb->max_length, only cb->max_length bytes will be available in cb->data
msg_typeType of DHCP message that triggered the callback
ifaceThe interface on which the DHCP message was received

Note: cb pointer can be used to retrieve private data through CONTAINER_OF() if original struct net_dhcpv4_option_callback is stored in another private structure.

Enumeration Type Documentation

◆ net_dhcpv4_msg_type

#include <zephyr/net/dhcpv4.h>

DHCPv4 message types.

These enumerations represent RFC2131 defined msy type codes, hence they should not be renumbered.

Additions, removald and reorders in this definition must be reflected within corresponding changes to net_dhcpv4_msg_type_name.

Enumerator
NET_DHCPV4_MSG_TYPE_DISCOVER 
NET_DHCPV4_MSG_TYPE_OFFER 
NET_DHCPV4_MSG_TYPE_REQUEST 
NET_DHCPV4_MSG_TYPE_DECLINE 
NET_DHCPV4_MSG_TYPE_ACK 
NET_DHCPV4_MSG_TYPE_NAK 
NET_DHCPV4_MSG_TYPE_RELEASE 
NET_DHCPV4_MSG_TYPE_INFORM 

Function Documentation

◆ net_dhcpv4_add_option_callback()

int net_dhcpv4_add_option_callback ( struct net_dhcpv4_option_callback *  cb)

#include <zephyr/net/dhcpv4.h>

Add an application callback.

Parameters
cbA valid application's callback structure pointer.
Returns
0 if successful, negative errno code on failure.

◆ net_dhcpv4_add_option_vendor_callback()

int net_dhcpv4_add_option_vendor_callback ( struct net_dhcpv4_option_callback *  cb)

#include <zephyr/net/dhcpv4.h>

Add an application callback for encapsulated vendor-specific options.

Parameters
cbA valid application's callback structure pointer.
Returns
0 if successful, negative errno code on failure.

◆ net_dhcpv4_init_option_callback()

static void net_dhcpv4_init_option_callback ( struct net_dhcpv4_option_callback *  callback,
net_dhcpv4_option_callback_handler_t  handler,
uint8_t  option,
void *  data,
size_t  max_length 
)
inlinestatic

#include <zephyr/net/dhcpv4.h>

Helper to initialize a struct net_dhcpv4_option_callback properly.

Parameters
callbackA valid Application's callback structure pointer.
handlerA valid handler function pointer.
optionThe DHCP option the callback responds to.
dataA pointer to a buffer for max_length bytes.
max_lengthThe maximum length of the data returned.

◆ net_dhcpv4_init_option_vendor_callback()

static void net_dhcpv4_init_option_vendor_callback ( struct net_dhcpv4_option_callback *  callback,
net_dhcpv4_option_callback_handler_t  handler,
uint8_t  option,
void *  data,
size_t  max_length 
)
inlinestatic

#include <zephyr/net/dhcpv4.h>

Helper to initialize a struct net_dhcpv4_option_callback for encapsulated vendor-specific options properly.

Parameters
callbackA valid Application's callback structure pointer.
handlerA valid handler function pointer.
optionThe DHCP encapsulated vendor-specific option the callback responds to.
dataA pointer to a buffer for max_length bytes.
max_lengthThe maximum length of the data returned.

◆ net_dhcpv4_msg_type_name()

const char * net_dhcpv4_msg_type_name ( enum net_dhcpv4_msg_type  msg_type)

#include <zephyr/net/dhcpv4.h>

Return a text representation of the msg_type.

Parameters
msg_typeThe msg_type to be converted to text
Returns
A text representation of msg_type

◆ net_dhcpv4_remove_option_callback()

int net_dhcpv4_remove_option_callback ( struct net_dhcpv4_option_callback *  cb)

#include <zephyr/net/dhcpv4.h>

Remove an application callback.

Parameters
cbA valid application's callback structure pointer.
Returns
0 if successful, negative errno code on failure.

◆ net_dhcpv4_remove_option_vendor_callback()

int net_dhcpv4_remove_option_vendor_callback ( struct net_dhcpv4_option_callback *  cb)

#include <zephyr/net/dhcpv4.h>

Remove an application callback for encapsulated vendor-specific options.

Parameters
cbA valid application's callback structure pointer.
Returns
0 if successful, negative errno code on failure.

◆ net_dhcpv4_restart()

void net_dhcpv4_restart ( struct net_if iface)

#include <zephyr/net/dhcpv4.h>

Restart DHCPv4 client on an iface.

Restart DHCPv4 client on a given interface. DHCPv4 client will restart the state machine without any of the initial delays used in start.

Parameters
ifaceA valid pointer on an interface

◆ net_dhcpv4_start()

void net_dhcpv4_start ( struct net_if iface)

#include <zephyr/net/dhcpv4.h>

Start DHCPv4 client on an iface.

Start DHCPv4 client on a given interface. DHCPv4 client will start negotiation for IPv4 address. Once the negotiation is success IPv4 address details will be added to interface.

Parameters
ifaceA valid pointer on an interface

◆ net_dhcpv4_stop()

void net_dhcpv4_stop ( struct net_if iface)

#include <zephyr/net/dhcpv4.h>

Stop DHCPv4 client on an iface.

Stop DHCPv4 client on a given interface. DHCPv4 client will remove all configuration obtained from a DHCP server from the interface and stop any further negotiation with the server.

Parameters
ifaceA valid pointer on an interface