Revision 7ab2a587d7f32dc688d21c9e00affa1bcc0fd6cf authored by Tam Mach on 06 June 2024, 12:18:54 UTC, committed by Tam Mach on 13 June 2024, 04:03:39 UTC
This commit is to support Listener Isolation concept from the upstream,
which allows at most one Listener matches a request, and only Routes
attached to that Listener are used for routing.

Relates: https://github.com/kubernetes-sigs/gateway-api/pull/2465
Relates: https://github.com/kubernetes-sigs/gateway-api/pull/3047
Signed-off-by: Tam Mach <tam.mach@cilium.io>
1 parent 4f92330
Raw File
filter_config.h
/* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */
/* Copyright Authors of Cilium */

/*
 * This is just a dummy header with dummy values to allow for test
 * compilation without the full code generation engine backend.
 */
#define CIDR4_HMAP_ELEMS 1024
#define CIDR4_LMAP_ELEMS 1024
#define CIDR4_HMAP_NAME v4_fix
#define CIDR4_LMAP_NAME v4_dyn
#define CIDR4_FILTER
#define CIDR4_LPM_PREFILTER
#define CIDR6_HMAP_NAME v6_fix
#define CIDR6_LMAP_NAME v6_dyn
#define CIDR6_FILTER
#define CIDR6_LPM_PREFILTER
back to top