pmlag

Poor man's link aggregation
git clone git://git.finwo.net/app/pmlag
Log | Files | Refs | README | LICENSE

commit fbeb0c0dd24fd9958b5ce88e2bedb6dcafe67690
parent 472626347a4147271f6e826a0b75dea5e7a6397e
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Sat, 14 Oct 2023 19:58:42 +0200

Remove multi-queue flag

Diffstat:
Msrc/util/socket.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/socket.c b/src/util/socket.c @@ -108,7 +108,7 @@ int tap_alloc(char * ifname, unsigned char * mac) { // Bring up the interface memset(&ifr, 0, sizeof(ifr)); - ifr.ifr_flags = IFF_TAP | IFF_MULTI_QUEUE | IFF_NO_PI; + ifr.ifr_flags = IFF_TAP | IFF_NO_PI; if( *ifname ) { strncpy(ifr.ifr_name, ifname, IFNAMSIZ); }