summaryrefslogtreecommitdiff
path: root/cesar/cp/eoc/sta/action/test/utest_eoc/src/cp_stub.c
blob: b9d5f3c7f3a2df51fb6e9d238abc383549894e12 (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
/* Cesar project {{{
 *
 * Copyright (C) 2008 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    src/cp_stub.c
 * \brief   CP stub.
 * \ingroup test
 */
#include "common/std.h"
#include "lib/scenario/scenario.h"
#include "cp/cp.h"

void
cp_compute_nmk_and_nid_from_npw (cp_t *ctx, const char *npw,
                                 cp_security_level_t sl)
{
    dbg_assert (ctx);
    dbg_assert (npw);
}

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

void
cp_eoc_cco_bw_sta_allocations (cp_t *ctx)
{
    scenario_event (cp_eoc_cco_bw_sta_allocations);
}