diff options
author | Dimitri Staessens <[email protected]> | 2023-11-27 14:43:11 +0100 |
---|---|---|
committer | Sander Vrijders <[email protected]> | 2023-11-29 09:57:29 +0100 |
commit | 346b054ee32a9f7b8491f842709f72cc8d1f3f2e (patch) | |
tree | 5a406924ca94a03460e9b1e14d50cd1fca7c5c61 /src/irmd/irmd.h | |
parent | 3f24301fff9c544dfe2b89c5737bc3cdf94ef9a9 (diff) | |
download | ouroboros-346b054ee32a9f7b8491f842709f72cc8d1f3f2e.tar.gz ouroboros-346b054ee32a9f7b8491f842709f72cc8d1f3f2e.zip |
include: Store IPCP name and type in info struct
The information for an IPCP is now stored in an ipcp_info struct,
containing name and type. The IRM public API is not changed.
Signed-off-by: Dimitri Staessens <[email protected]>
Signed-off-by: Sander Vrijders <[email protected]>
Diffstat (limited to 'src/irmd/irmd.h')
-rw-r--r-- | src/irmd/irmd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/irmd/irmd.h b/src/irmd/irmd.h index a225a2dd..fcf4d1fb 100644 --- a/src/irmd/irmd.h +++ b/src/irmd/irmd.h @@ -26,8 +26,7 @@ #include <ouroboros/ipcp.h> #include <ouroboros/irm.h> -int create_ipcp(const char * name, - enum ipcp_type type); +int create_ipcp(const struct ipcp_info * info); int bootstrap_ipcp(pid_t pid, struct ipcp_config * conf); |