forked from Minki/linux
12 lines
201 B
C
12 lines
201 B
C
|
/* SPDX-License-Identifier: GPL-2.0 */
|
||
|
#ifndef XDPSOCK_H_
|
||
|
#define XDPSOCK_H_
|
||
|
|
||
|
/* Power-of-2 number of sockets */
|
||
|
#define MAX_SOCKS 4
|
||
|
|
||
|
/* Round-robin receive */
|
||
|
#define RR_LB 0
|
||
|
|
||
|
#endif /* XDPSOCK_H_ */
|