summaryrefslogtreecommitdiff
path: root/cesar/cp/sta/action/src/assoc.c
blob: aff16580695d6e28cf890bd2cd6da7b43a052fae (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
/* Cesar project {{{
 *
 * Copyright (C) 2008 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    cp/sta/action/src/assoc.c
 * \brief   STA action, association related definitions.
 * \ingroup cp_sta_action
 */
#include "common/std.h"

#include "action.h"

#include "cp/inc/context.h"
#include "cp/fsm/fsm.h"
#include "cp/msg/msg.h"
#include "cp/beacon/beacon.h"
#include "lib/rnd.h"
#include "cp/secu/defs.h"
#include "cp/beacon/beacon.h"
#include "bsu/bsu.h"

void
cp_sta_action_assoc__stop_retry_timer (cp_t *ctx)
{
    dbg_assert (ctx);
    cp_sta_core_stop_timed_or_cyclic_event (
        ctx, &ctx->sta_action.assoc.timer);
}