/* * Copyright (c) 2018-2020, Andreas Kling * Copyright (c) 2021, Sam Atkins * * SPDX-License-Identifier: BSD-2-Clause */ #pragma once #include #include #include #include namespace Core { class TCPServer : public Object { C_OBJECT_ABSTRACT(TCPServer) public: static ErrorOr> try_create(Object* parent = nullptr); virtual ~TCPServer() override; enum class AllowAddressReuse { Yes, No, }; bool is_listening() const { return m_listening; } ErrorOr listen(IPv4Address const& address, u16 port, AllowAddressReuse = AllowAddressReuse::No); ErrorOr set_blocking(bool blocking); ErrorOr> accept(); Optional local_address() const; Optional local_port() const; Function on_ready_to_accept; private: explicit TCPServer(int fd, Object* parent = nullptr); int m_fd { -1 }; bool m_listening { false }; RefPtr m_notifier; }; }