blob: 6580cb5b501e9ef1f84da0aa616451800e07936e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
/*
* Ouroboros - Copyright (C) 2016 - 2024
*
* The IPC Resource Manager - Registry - IPCPs
*
* Dimitri Staessens <dimitri@ouroboros.rocks>
* Sander Vrijders <sander@ouroboros.rocks>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., http://www.fsf.org/about/contact/.
*/
#define _POSIX_C_SOURCE 200809L
#define OUROBOROS_PREFIX "reg/ipcp"
#include <ouroboros/logs.h>
#include <ouroboros/time.h>
#include "ipcp.h"
#include <assert.h>
#include <errno.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
struct reg_ipcp * reg_ipcp_create(const struct ipcp_info * info)
{
struct reg_ipcp * ipcp;
assert(info != NULL);
assert(info->state == IPCP_BOOT);
ipcp = malloc(sizeof(*ipcp));
if (ipcp == NULL) {
log_err("Failed to malloc ipcp.");
goto fail_malloc;
}
memset(ipcp, 0, sizeof(*ipcp));
memset(&ipcp->layer, 0, sizeof(ipcp->layer));
list_head_init(&ipcp->next);
ipcp->info = *info;
ipcp->info.state = IPCP_BOOT;
strcpy(ipcp->layer.name, "Not enrolled.");
return ipcp;
fail_malloc:
return NULL;
}
void reg_ipcp_destroy(struct reg_ipcp * ipcp)
{
assert(ipcp != NULL);
assert(list_is_empty(&ipcp->next));
free(ipcp);
}
void reg_ipcp_update(struct reg_ipcp * ipcp,
const struct ipcp_info * info)
{
assert(ipcp != NULL);
assert(info->state != IPCP_INIT);
ipcp->info = *info;
}
void reg_ipcp_set_layer(struct reg_ipcp * ipcp,
const struct layer_info * info)
{
assert(ipcp != NULL);
assert(ipcp->info.state == IPCP_OPERATIONAL);
ipcp->layer = *info;
}
|