mptcpd
Multipath TCP Daemon
Loading...
Searching...
No Matches
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
14struct mptcpd_pm;
15struct mptcpd_config;
16
28struct mptcpd_pm *
30
36void 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:918
void mptcpd_pm_destroy(struct mptcpd_pm *pm)
Definition path_manager.c:1011
mptcpd configuration parameters
Definition configuration.h:31
Data needed to run the path manager.
Definition path_manager.h:46
struct mptcpd_config const * config
Mptcpd configuration.
Definition path_manager.h:51