mirror of https://github.com/F-Stack/f-stack.git
32 lines
525 B
C
32 lines
525 B
C
/* SPDX-License-Identifier: BSD-3-Clause
|
|
* Copyright(c) 2023 Marvell.
|
|
*/
|
|
|
|
#ifndef APP_GRAPH_MODULE_API_H
|
|
#define APP_GRAPH_MODULE_API_H
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
#include "cli.h"
|
|
#include "conn.h"
|
|
#include "ethdev.h"
|
|
#include "ethdev_rx.h"
|
|
#include "graph.h"
|
|
#include "l3fwd.h"
|
|
#include "mempool.h"
|
|
#include "neigh.h"
|
|
#include "route.h"
|
|
#include "utils.h"
|
|
|
|
/*
|
|
* Externs
|
|
*/
|
|
extern volatile bool force_quit;
|
|
extern struct conn *conn;
|
|
|
|
bool app_graph_stats_enabled(void);
|
|
bool app_graph_exit(void);
|
|
|
|
#endif
|