//SPDX-License-Identifier: LGPL-3.0-only //SPDX-FileCopyrightText: Copyright (C) 2026 Catcrafts® export module Crafter.Network; export import :ClientTCP; export import :ListenerTCP; export import :ClientHTTP; export import :ListenerHTTP; export import :HTTP; export import :ClientQUIC; export import :ListenerQUIC; export import :WebTransport; #ifndef CRAFTER_NETWORK_BROWSER // Exposed so user code can build WebTransport clients by hand against a // ClientQUIC until we ship a ClientWebTransport wrapper. Most callers do // not need the HTTP/3 frame helpers directly. Excluded from the browser // build — HTTP3 uses throw and the wasm target runs with -fno-exceptions. export import :HTTP3; #endif