mirror of
https://github.com/systemd/systemd.git
synced 2024-11-04 22:21:55 +03:00
0cb8e3d118
Just some minor reorganiztion.
10 lines
307 B
C
10 lines
307 B
C
/* 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);
|