]> git.lizzy.rs Git - dragonfireclient.git/blob - src/network/socket.h
Fix BSD iconv declaration
[dragonfireclient.git] / src / network / socket.h
1 /*
2 Minetest
3 Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
4
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU Lesser General Public License as published by
7 the Free Software Foundation; either version 2.1 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #pragma once
21
22 #include <ostream>
23 #include <cstring>
24 #include "address.h"
25 #include "irrlichttypes.h"
26 #include "networkexceptions.h"
27
28 extern bool socket_enable_debug_output;
29
30 void sockets_init();
31 void sockets_cleanup();
32
33 class UDPSocket
34 {
35 public:
36         UDPSocket() = default;
37
38         UDPSocket(bool ipv6);
39         ~UDPSocket();
40         void Bind(Address addr);
41
42         bool init(bool ipv6, bool noExceptions = false);
43
44         void Send(const Address &destination, const void *data, int size);
45         // Returns -1 if there is no data
46         int Receive(Address &sender, void *data, int size);
47         int GetHandle(); // For debugging purposes only
48         void setTimeoutMs(int timeout_ms);
49         // Returns true if there is data, false if timeout occurred
50         bool WaitData(int timeout_ms);
51
52 private:
53         int m_handle;
54         int m_timeout_ms;
55         int m_addr_family;
56 };