Path: blob/master/drivers/windows/net_socket_winsock.h
9903 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 {40private:41SOCKET _sock = INVALID_SOCKET;42IP::Type _ip_type = IP::TYPE_NONE;43bool _is_stream = false;4445enum NetError {46ERR_NET_WOULD_BLOCK,47ERR_NET_IS_CONNECTED,48ERR_NET_IN_PROGRESS,49ERR_NET_ADDRESS_INVALID_OR_UNAVAILABLE,50ERR_NET_UNAUTHORIZED,51ERR_NET_BUFFER_TOO_SMALL,52ERR_NET_OTHER,53};5455NetError _get_socket_error() const;56void _set_socket(SOCKET p_sock, IP::Type p_ip_type, bool p_is_stream);57_FORCE_INLINE_ Error _change_multicast_group(IPAddress p_ip, String p_if_name, bool p_add);5859protected:60static NetSocket *_create_func();6162bool _can_use_ip(const IPAddress &p_ip, const bool p_for_bind) const;6364public:65static void make_default();66static void cleanup();67static void _set_ip_port(struct sockaddr_storage *p_addr, IPAddress *r_ip, uint16_t *r_port);68static size_t _set_addr_storage(struct sockaddr_storage *p_addr, const IPAddress &p_ip, uint16_t p_port, IP::Type p_ip_type);6970virtual Error open(Type p_sock_type, IP::Type &ip_type) override;71virtual void close() override;72virtual Error bind(IPAddress p_addr, uint16_t p_port) override;73virtual Error listen(int p_max_pending) override;74virtual Error connect_to_host(IPAddress p_host, uint16_t p_port) override;75virtual Error poll(PollType p_type, int timeout) const override;76virtual Error recv(uint8_t *p_buffer, int p_len, int &r_read) override;77virtual Error recvfrom(uint8_t *p_buffer, int p_len, int &r_read, IPAddress &r_ip, uint16_t &r_port, bool p_peek = false) override;78virtual Error send(const uint8_t *p_buffer, int p_len, int &r_sent) override;79virtual Error sendto(const uint8_t *p_buffer, int p_len, int &r_sent, IPAddress p_ip, uint16_t p_port) override;80virtual Ref<NetSocket> accept(IPAddress &r_ip, uint16_t &r_port) override;8182virtual bool is_open() const override;83virtual int get_available_bytes() const override;84virtual Error get_socket_address(IPAddress *r_ip, uint16_t *r_port) const override;8586virtual Error set_broadcasting_enabled(bool p_enabled) override;87virtual void set_blocking_enabled(bool p_enabled) override;88virtual void set_ipv6_only_enabled(bool p_enabled) override;89virtual void set_tcp_no_delay_enabled(bool p_enabled) override;90virtual void set_reuse_address_enabled(bool p_enabled) override;91virtual Error join_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) override;92virtual Error leave_multicast_group(const IPAddress &p_multi_address, const String &p_if_name) override;9394NetSocketWinSock();95~NetSocketWinSock() override;96};9798#endif // WINDOWS_ENABLED99100101