/* * Copyright (c) 2022, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include namespace Web::Fetch::Infrastructure { [[nodiscard]] RequestOrResponseBlocking block_bad_port(Request const&); [[nodiscard]] bool is_bad_port(u16); }