PatchworkOS  966e257
A non-POSIX operating system.
Loading...
Searching...
No Matches
net.h
Go to the documentation of this file.
1#pragma once
2
3#include <kernel/fs/sysfs.h>
4
5/**
6 * @brief Networking and Sockets.
7 * @defgroup module_net Networking
8 * @ingroup modules
9 *
10 * The networking subsystem is exposed as `/net` and is responsible for providing networking and IPC through sockets.
11 *
12 * @see module_net_socket for information about sockets.
13 *
14 * @{
15 */
16
17/**
18 * @brief Retrieve the mount for the networking subsystem.
19 *
20 * @return The mount for the networking subsystem (`/net`).
21 */
23
24/** @} */
mount_t * net_get_mount(void)
Retrieve the mount for the networking subsystem.
Definition net.c:17
Mount structure.
Definition mount.h:44