/* * Copyright (c) 2025 Onomondo ApS & sysmocom - s.f.m.c. GmbH. All rights reserved. * * SPDX-License-Identifier: AGPL-3.0-only */ #pragma once #include #include struct ipa_bpp_segments { struct ipa_buf **segment; size_t count; }; struct ipa_bpp_segments *ipa_bpp_segments_encode(const struct BoundProfilePackage *bpp); void ipa_bpp_segments_free(struct ipa_bpp_segments *segments);