 |
P4C
The P4 Compiler
|
Loading...
Searching...
No Matches
11#ifndef BACKENDS_EBPF_RUNTIME_EBPF_MAP_H_
12#define BACKENDS_EBPF_RUNTIME_EBPF_MAP_H_
14#include "contrib/uthash.h"
28int bpf_map_update_elem(
struct bpf_map **map,
void *key,
unsigned int key_size,
void *value,
unsigned int value_size,
unsigned long long flags);
35void *bpf_map_lookup_elem(
struct bpf_map *map,
void *key,
unsigned int key_size);
42int bpf_map_delete_elem(
struct bpf_map *map,
void *key,
unsigned int key_size);
49int bpf_map_delete_map(
struct bpf_map *map);