mptcpd
Multipath TCP Daemon
path_manager.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: BSD-3-Clause
10 #ifndef MPTCPD_PATH_MANAGER_H
11 #define MPTCPD_PATH_MANAGER_H
12 
13 
14 struct mptcpd_pm;
15 struct mptcpd_config;
16 
28 struct mptcpd_pm *
30 
36 void mptcpd_pm_destroy(struct mptcpd_pm *pm);
37 
38 
39 #endif /* MPTCPD_PATH_MANAGER_H */
40 
41 
42 /*
43  Local Variables:
44  c-file-style: "linux"
45  End:
46 */
struct mptcpd_pm * mptcpd_pm_create(struct mptcpd_config const *config)
Create a path manager.
Definition: path_manager.c:833
void mptcpd_pm_destroy(struct mptcpd_pm *pm)
Definition: path_manager.c:926
mptcpd configuration parameters
Definition: configuration.h:29
Data needed to run the path manager.
Definition: path_manager.h:44
struct mptcpd_config const * config
Mptcpd configuration.
Definition: path_manager.h:49