summaryrefslogtreecommitdiff
path: root/cesar/cl/stub/src/bridge_table.c
blob: 82f914251aa5952770f2e182120e4859058a3b0d (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
/* Cesar project {{{
 *
 * Copyright (C) 2008 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    bridge_table.c
 * \brief   Bridge table stub.
 * \ingroup cl
 */
#include "common/std.h"
#include "cl/bridge_table.h"

void
bridge_table_init (cl_t *ctx) __attribute__((weak));

void
bridge_table_deinit (cl_t *ctx) __attribute__((weak));

void
bridge_table_add (cl_t *ctx, mac_t src_mac) __attribute__((weak));

void
bridge_table_update (cl_t *ctx) __attribute__((weak));

uint
bridge_table_size (cl_t *ctx) __attribute__((weak));

mac_t
bridge_table_get_entry (cl_t *ctx, uint position) __attribute__((weak));

void
bridge_table_init (cl_t *ctx)
{
}

void
bridge_table_deinit (cl_t *ctx)
{
}

void
bridge_table_add (cl_t *ctx, mac_t src_mac)
{
}

void
bridge_table_update (cl_t *ctx)
{
}

uint
bridge_table_size (cl_t *ctx)
{
    return 0;
}

mac_t
bridge_table_get_entry (cl_t *ctx, uint position)
{
    return 0;
}