/* SPDX-License-Identifier: GPL-2.0-only */1/*2* Network interface table.3*4* Network interfaces (devices) do not have a security field, so we5* maintain a table associating each interface with a SID.6*7* Author: James Morris <[email protected]>8*9* Copyright (C) 2003 Red Hat, Inc., James Morris <[email protected]>10* Copyright (C) 2007 Hewlett-Packard Development Company, L.P.11* Paul Moore <[email protected]>12*/1314#ifndef _SELINUX_NETIF_H_15#define _SELINUX_NETIF_H_1617#include <net/net_namespace.h>1819void sel_netif_flush(void);2021int sel_netif_sid(struct net *ns, int ifindex, u32 *sid);2223#endif /* _SELINUX_NETIF_H_ */242526