summaryrefslogtreecommitdiff
path: root/cesar/cp/eoc/multi_sta/action/test/utest/src/mgr_stub.c
blob: d6fe512dce96beb33c941f7ddaa7604b77387ed6 (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
/* Cesar project {{{
 *
 * Copyright (C) 2009 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    eoc/sta/action/test/utest/src/msg_stub.c
 * \brief   cp/sta/mgr/sta_mgr stub
 * \ingroup test
 *
 */
#include "common/std.h"
#include "cp/cp.h"
#include "cp/mme.h"
#include "cp/inc/context.h"
#include "cp/msg/inc/cc_assoc.h"

bool
cp_msg_cc_assoc_cnf_receive (cp_t *ctx, cp_mme_rx_t *mme,
                             cp_msg_cc_assoc_cnf_t *data)
{
    dbg_assert (ctx);
    return true;
}

void
cp_msg_cc_assoc_cnf_send (cp_t *ctx, cp_mme_peer_t *peer,
                          const cp_msg_cc_assoc_cnf_t *data)
{
    dbg_assert (ctx);
    dbg_assert (peer);
    dbg_assert (data);
}

void
cp_cco_action_tei_release (cp_t *ctx, u8 tei)
{
    dbg_assert (ctx);
    dbg_assert (tei);
}

u32
cp_sta_core_get_date_ms (cp_t *ctx)
{
    return 0;
}

void
cp_sta_core_checkpoint (cp_t *ctx)
{
}

void
sar_activate (sar_t *ctx, bool activate)
{
}

void
pbproc_activate (pbproc_t *ctx, bool flag)
{
}