summaryrefslogtreecommitdiff
path: root/src/basic/namespace-util.h
blob: 8c17ce91b21ca4aa781a7c46239734c4e9be870f (plain)
1
2
3
4
5
6
7
8
9
/* SPDX-License-Identifier: LGPL-2.1+ */
#pragma once

#include <sys/types.h>

int namespace_open(pid_t pid, int *pidns_fd, int *mntns_fd, int *netns_fd, int *userns_fd, int *root_fd);
int namespace_enter(int pidns_fd, int mntns_fd, int netns_fd, int userns_fd, int root_fd);

int fd_is_network_ns(int fd);