summaryrefslogtreecommitdiff
path: root/system-dummy.c
blob: 7e009ba4fc50a6b77efa31fd96b14d9f446fe69d (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
#include <stdio.h>
#include <string.h>

#include "netifd.h"
#include "device.h"

int system_bridge_addbr(struct device *bridge)
{
	DPRINTF("brctl addbr %s\n", bridge->ifname);
	return 0;
}

int system_bridge_delbr(struct device *bridge)
{
	DPRINTF("brctl delbr %s\n", bridge->ifname);
	return 0;
}

int system_bridge_addif(struct device *bridge, struct device *dev)
{
	DPRINTF("brctl addif %s %s\n", bridge->ifname, dev->ifname);
	return 0;
}

int system_bridge_delif(struct device *bridge, struct device *dev)
{
	DPRINTF("brctl delif %s %s\n", bridge->ifname, dev->ifname);
	return 0;
}

int system_vlan_add(struct device *dev, int id)
{
	DPRINTF("vconfig add %s %d\n", dev->ifname, id);
	return 0;
}

int system_vlan_del(struct device *dev)
{
	DPRINTF("vconfig rem %s\n", dev->ifname);
	return 0;
}

int system_if_up(struct device *dev)
{
	DPRINTF("ifconfig %s up\n", dev->ifname);
	return 0;
}

int system_if_down(struct device *dev)
{
	DPRINTF("ifconfig %s down\n", dev->ifname);
	return 0;
}

int system_if_check(struct device *dev)
{
	dev->ifindex = 0;

	if (!strcmp(dev->ifname, "eth0"))
		set_device_present(dev, true);

	return 0;
}

int system_add_address(struct device *dev, int family, void *addr, int prefixlen)
{
	uint8_t *a = addr;

	if (family == AF_INET) {
		DPRINTF("ifconfig %s add %d.%d.%d.%d/%d\n",
			dev->ifname, a[0], a[1], a[2], a[3], prefixlen);
	} else {
		return -1;
	}

	return 0;
}

int system_del_address(struct device *dev, int family, void *addr)
{
	uint8_t *a = addr;

	if (family == AF_INET) {
		DPRINTF("ifconfig %s del %d.%d.%d.%d\n",
			dev->ifname, a[0], a[1], a[2], a[3]);
	} else {
		return -1;
	}

	return 0;
}