ladybird/Libraries/LibCore/UDPServer.h
Timothy Flynn 90525f7e97 LibCore: Define SocketAddress out-of-line to remove SocketAddressWindows
SocketAddressWindows.h contains a bunch of copy-pasted Windows
definitions. This started causing ad-nauseam redefinition errors when
implementing the HTTP disk cache for Windows.

Instead, let's forward-declare the types we can in SocketAddress.h and
only define the couple of constants that we need. We can then assert at
compile-time that we defined them correctly.
2025-12-01 06:34:32 -05:00

48 lines
1 KiB
C++

/*
* Copyright (c) 2020, Andreas Kling <andreas@ladybird.org>
* Copyright (c) 2022, Alexander Narsudinov <a.narsudinov@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/ByteBuffer.h>
#include <AK/Forward.h>
#include <AK/Function.h>
#include <LibCore/EventReceiver.h>
#include <LibCore/Forward.h>
#include <LibCore/SocketAddress.h>
namespace Core {
class UDPServer : public EventReceiver {
C_OBJECT(UDPServer)
public:
virtual ~UDPServer() override;
bool is_bound() const { return m_bound; }
bool bind(IPv4Address const& address, u16 port);
ErrorOr<ByteBuffer> receive(size_t size, sockaddr_in& from);
ErrorOr<ByteBuffer> receive(size_t size);
ErrorOr<size_t> send(ReadonlyBytes, sockaddr_in const& to);
Optional<IPv4Address> local_address() const;
Optional<u16> local_port() const;
int fd() const { return m_fd; }
Function<void()> on_ready_to_receive;
protected:
UDPServer();
private:
int m_fd { -1 };
bool m_bound { false };
RefPtr<Notifier> m_notifier;
};
}