mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
37 lines
1.0 KiB
C
37 lines
1.0 KiB
C
/*
|
|
* Copyright (C) 2021 Freie Universität Berlin
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @{
|
|
*
|
|
* @file
|
|
* @author Martine Lenders <m.lenders@fu-berlin.de>
|
|
*/
|
|
|
|
#include "congure/reno.h"
|
|
|
|
static const congure_snd_driver_t _driver = {
|
|
.init = congure_reno_snd_init,
|
|
.inter_msg_interval = congure_reno_snd_inter_msg_interval,
|
|
.report_msg_sent = congure_reno_snd_report_msg_sent,
|
|
.report_msg_discarded = congure_reno_snd_report_msg_discarded,
|
|
.report_msgs_timeout = congure_reno_snd_report_msgs_timeout,
|
|
.report_msgs_lost = congure_reno_snd_report_msgs_lost,
|
|
.report_msg_acked = congure_reno_snd_report_msg_acked,
|
|
.report_ecn_ce = congure_reno_snd_report_ecn_ce,
|
|
};
|
|
|
|
void congure_reno_snd_setup(congure_reno_snd_t *c,
|
|
const congure_reno_snd_consts_t *consts)
|
|
{
|
|
c->super.driver = &_driver;
|
|
c->consts = consts;
|
|
}
|
|
|
|
/** @} */
|