summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/UDPSocket.h
blob: c516bd32ebbe6088f9f5ae69ab0a3e0825ab8e82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2020, Andreas Kling <kling@serenityos.org>
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <LibCore/Socket.h>

namespace Core {

class UDPSocket final : public Socket {
    C_OBJECT(UDPSocket)
public:
    virtual ~UDPSocket() override;

private:
    explicit UDPSocket(Object* parent = nullptr);
};

}