mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-05-27 22:30:56 +00:00

Add `struct isis_srv6_db` to store per-area SRv6 information. Signed-off-by: Carmine Scarpitta <carmine.scarpitta@uniroma2.it>
18 lines
425 B
C
18 lines
425 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* This is an implementation of Segment Routing over IPv6 (SRv6) for IS-IS
|
|
* as per RFC 9352
|
|
* https://datatracker.ietf.org/doc/html/rfc9352
|
|
*
|
|
* Copyright (C) 2023 Carmine Scarpitta - University of Rome Tor Vergata
|
|
*/
|
|
|
|
#ifndef _FRR_ISIS_SRV6_H
|
|
#define _FRR_ISIS_SRV6_H
|
|
|
|
/* Per-area IS-IS SRv6 Data Base (SRv6 DB) */
|
|
struct isis_srv6_db {
|
|
};
|
|
|
|
#endif /* _FRR_ISIS_SRV6_H */
|