mirror of
https://gitlab.com/d3tn/ud3tn.git
synced 2026-08-18 13:09:11 +02:00
ud3tn is available under multiple licenses and we want to reflect this in our source code. But which license information should appear first and how can we manage this efficiently in the future? The Linux Kernel uses SPDX expressions instead of boilerplate sections. This seems to be a great approach, so we do the same here. Signed-off-by: Georg Alexander Murzik <georg.murzik@d3tn.com>
15 lines
385 B
C
15 lines
385 B
C
// SPDX-License-Identifier: BSD-3-Clause OR Apache-2.0
|
|
#ifndef BUNDLE6_FRAGMENT_H_INCLUDED
|
|
#define BUNDLE6_FRAGMENT_H_INCLUDED
|
|
|
|
#include "ud3tn/bundle.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
struct bundle *bundle6_initialize_first_fragment(struct bundle *input);
|
|
|
|
struct bundle *bundle6_fragment_bundle(
|
|
struct bundle *working_bundle,
|
|
uint64_t first_max);
|
|
|
|
#endif /* BUNDLE6_FRAGMENT_H_INCLUDED */
|