mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-16 13:01:06 +02:00
...to align with the general decision to make DTN timestamps millisecond-based. See: #53 Signed-off-by: Felix Walter <felix.walter@d3tn.com>
12 lines
282 B
C
12 lines
282 B
C
// SPDX-License-Identifier: BSD-3-Clause OR Apache-2.0
|
|
#ifndef ECHO_AGENT_H_
|
|
#define ECHO_AGENT_H_
|
|
|
|
#include "ud3tn/bundle_processor.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
int echo_agent_setup(struct bundle_agent_interface *const bai,
|
|
const uint64_t lifetime_ms);
|
|
|
|
#endif // ECHO_AGENT_H_
|