Userspace VoLTE/IMS daemon for mainline Linux phones (developed on the Fairphone 6): a GLib-free core (SIP, SDP, USIM AKA, IPsec SA setup, RTP media, call engine) behind a GDBus control daemon, a standalone AMR-WB media leg, and a Plasma Dialer backend. C++26 modules built with Crafter Build; the tree is clean under the project's house-style linter (crafter-build lint) across all three build products. Assisted-by: Claude:claude-fable-5 Signed-off-by: Jorijn van der Graaf <jorijnvdgraaf@catcrafts.net>
15 lines
341 B
C++
15 lines
341 B
C++
// SPDX-License-Identifier: GPL-3.0-only
|
|
// SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts®
|
|
|
|
/*
|
|
imsd — userspace IMS/VoLTE daemon for mainline Linux phones.
|
|
*/
|
|
|
|
export module Imsd;
|
|
export import :Util;
|
|
export import :Aka;
|
|
export import :Ipsec;
|
|
export import :Sip;
|
|
export import :Sdp;
|
|
export import :Messages;
|
|
export import :Engine;
|