aboutsummaryrefslogtreecommitdiffstats
path: root/tools/docker/test-containers/dpdk-forwarding-pods/l2l3fwd/dpdk-args.h
blob: 69424c8b1f9d591b2e7a9f6330e41f20060a734a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0
// Copyright(c) 2021 Red Hat, Inc.

#ifndef __DPDK_ARGS_H__
#define __DPDK_ARGS_H__

typedef enum {
	DPDK_APP_TESTPMD = 1,
	DPDK_APP_L3FWD,
	DPDK_APP_L2FWD,
	DPDK_APP_OTHER
} eDpdkAppType;

extern char** GetArgs(int *pArgc, eDpdkAppType appType);

#endif  /* __DPDK_ARGS_H__ */