DPDK  20.05.0-rc0
Enumerations | Functions
rte_node_ip4_api.h File Reference
#include <rte_common.h>

Go to the source code of this file.

Enumerations

Functions

__rte_experimental int rte_node_ip4_route_add (uint32_t ip, uint8_t depth, uint16_t next_hop, enum rte_node_ip4_lookup_next next_node)
 
__rte_experimental int rte_node_ip4_rewrite_add (uint16_t next_hop, uint8_t *rewrite_data, uint8_t rewrite_len, uint16_t dst_port)
 

Detailed Description

Warning
EXPERIMENTAL: this API may change without prior notice

This API allows to do control path functions of ip4_* nodes like ip4_lookup, ip4_rewrite.

Definition in file rte_node_ip4_api.h.

Enumeration Type Documentation

Warning
EXPERIMENTAL: this API may change without prior notice

IP4 lookup next nodes.

Enumerator
RTE_NODE_IP4_LOOKUP_NEXT_REWRITE 

Rewrite node.

RTE_NODE_IP4_LOOKUP_NEXT_PKT_DROP 

Packet drop node.

RTE_NODE_IP4_LOOKUP_NEXT_MAX 

Number of next nodes of lookup node.

Definition at line 30 of file rte_node_ip4_api.h.

Function Documentation

__rte_experimental int rte_node_ip4_route_add ( uint32_t  ip,
uint8_t  depth,
uint16_t  next_hop,
enum rte_node_ip4_lookup_next  next_node 
)
Warning
EXPERIMENTAL: this API may change without prior notice

Add ipv4 route to lookup table.

Parameters
ipIP address of route to be added.
depthDepth of the rule to be added.
next_hopNext hop id of the rule result to be added.
next_nodeNext node to redirect traffic to.
Returns
0 on success, negative otherwise.
Examples:
examples/l3fwd-graph/main.c.
__rte_experimental int rte_node_ip4_rewrite_add ( uint16_t  next_hop,
uint8_t *  rewrite_data,
uint8_t  rewrite_len,
uint16_t  dst_port 
)
Warning
EXPERIMENTAL: this API may change without prior notice

Add a next hop's rewrite data.

Parameters
next_hopNext hop id to add rewrite data to.
rewrite_dataRewrite data.
rewrite_lenLength of rewrite data.
dst_portDestination port to redirect traffic to.
Returns
0 on success, negative otherwise.
Examples:
examples/l3fwd-graph/main.c.