Path: blob/master/drivers/windows/net_socket_winsock.h
21117 views
/**************************************************************************/1/* net_socket_winsock.h */2/**************************************************************************/3/* This file is part of: */4/* GODOT ENGINE */5/* https://godotengine.org */6/**************************************************************************/7/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */8/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */9/* */10/* Permission is hereby granted, free of charge, to any person obtaining */11/* a copy of this software and associated documentation files (the */12/* "Software"), to deal in the Software without restriction, including */13/* without limitation the rights to use, copy, modify, merge, publish, */14/* distribute, sublicense, and/or sell copies of the Software, and to */15/* permit persons to whom the Software is furnished to do so, subject to */16/* the following conditions: */17/* */18/* The above copyright notice and this permission notice shall be */19/* included in all copies or substantial portions of the Software. */20/* */21/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */22/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */23/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */24/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */25/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */26/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */27/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */28/**************************************************************************/2930#pragma once3132#ifdef WINDOWS_ENABLED3334#include "core/io/net_socket.h"3536#include <winsock2.h>37#include <ws2tcpip.h>3839class NetSocketWinSock : public NetSocket {40GDSOFTCLASS(NetSocketWinSock, NetSocket);4142private:43SOCKET _sock = INVALID_SOCKET;44IP::Type _ip_type = IP::TYPE_NONE;45bool _is_stream = false;4647enum NetError {48ERR_NET_WOULD_BLOCK,49ERR_NET_IS_CONNECTED,50ERR_NET_IN_PROGRESS,51ERR_NET_ADDRESS_INVALID_OR_UNAVAILABLE,52ERR_NET_UNAUTHORIZED,53ERR_NET_BUFFER_TOO_SMALL,54ERR_NET_OTHER,55};5657NetError _get_socket_error() const;58void _set_socket(SOCKET p_sock, IP::Type p_ip_type, bool p_is_stream);59_FORCE_INLINE_ Error _change_multicast_group(IPAddress p_ip, String p_if_name, bool p_add);6061protected:62static NetSocket *_create_func();6364bool _can_use_ip(const IPAddress &p_ip, const bool p_for_bind) const;6566public:67static void make_default();68static void cleanup();69static void _set_ip_port(struct sockaddr_storage *p_addr, IPAddress *r_ip, uint16_t *r_port);70static size_t _set_addr_storage(struct sockaddr_storage *p_addr, const IPAddress &p_ip, uint16_t p_port, IP::Type p_ip_type);7172virtual Error open(Family p_family, Type p_sock_type, IP::Type &ip_type) override;73virtual void close() override;74virtual Error bind(Address p_addr) override;75virtual Error listen(int p_max_pending) override;76virtual Error connect_to_host(Address p_addr) override;77virtual Error poll(PollType p_type, int timeout) const override;78virtual Error recv(uint8_t *p_buffer, int p_len, int &r_read) override;79virtual Error recvfrom(uint8_t *p_buffer, int p_len, int &r_read, IPAddress &r_ip, uint16_t &r_port, bool p_peek = false) override;80virtual Error send(const uint8_t *p_buffer, int p_len, int &r_sent) override;81virtual Error sendto(const uint8_t *p_buffer, int p_len, int &r_sent, IPAddress p_ip, uint16_t p_port) override;82virtual Ref<NetSocket> accept(Address &r_addr) override;8384virtual bool is_open() const override;85virtual int get_available_bytes() const override;86virtual Error get_socket_address(Address *r_addr) const override;8788virtual Error set_broadcasting_enabled(bool p_enabled) override;89virtual void set_blocking_enabled(bool p_enabled) override;90virtual void set_ipv6_only_enabled(bool p_enabled) override;91virtual void set_tcp_no_delay_enabled(bool p_enabled) override;92virtual void set_reuse_address_enabled(bool p_enabled) override;93virtual Error join_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) override;94virtual Error leave_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) override;9596NetSocketWinSock();97~NetSocketWinSock() override;98};99100#endif // WINDOWS_ENABLED101102103