/* TessesFramework a library to make C++ easier for me, used in CrossLang: https://git.tesses.org/tesses50/crosslang Copyright (C) 2026 Mike Nolan This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . */ #pragma once #include "Stream.hpp" namespace Tesses::Framework::Streams { class NetworkStream; class TcpServer { int32_t sock; bool owns; bool valid; public: TcpServer(int32_t backlog); TcpServer(int32_t sock, bool owns); TcpServer(uint16_t port, int32_t backlog); TcpServer(std::string ip, uint16_t port, int32_t backlog); TcpServer(std::string unixPath, int32_t backlog); std::shared_ptr GetStream(std::string &ip, uint16_t &port); uint16_t GetPort(); ~TcpServer(); bool IsValid(); void Close(); }; enum class SocketType { ST_IPv4_TCP, ST_IPv4_UDP, ST_IPv6_TCP, ST_IPv6_UDP, ST_UNIX }; class NetworkStream : public Stream { int32_t sock; bool owns; bool success; bool endOfStream; public: bool DataAvailable(int timeout = 0); bool EndOfStream(); bool CanRead(); bool CanWrite(); NetworkStream(SocketType type); NetworkStream(std::string unixPath, bool isServer); NetworkStream(std::string ipOrFqdn, uint16_t port, bool datagram, bool broadcast, bool supportIPv6); NetworkStream(int32_t sock, bool owns); uint16_t GetPort(); void Listen(int32_t backlog); void Bind(std::string ip, uint16_t port); void SetBroadcast(bool bC); void SetReuseAddress(bool reuse); void SetReusePort(bool reuse); void SetMulticastTTL(uint8_t ttl); void SetMulticastMembership(std::string multicastAddress, std::string ifaceIP = "0.0.0.0"); std::shared_ptr Accept(std::string &ip, uint16_t &port); size_t Read(uint8_t *buff, size_t sz); size_t Write(const uint8_t *buff, size_t sz); size_t ReadFrom(uint8_t *buff, size_t sz, std::string &ip, uint16_t &port); size_t WriteTo(const uint8_t *buff, size_t sz, std::string ip, uint16_t port); static std::vector> GetIPs(bool ipV6 = false); ~NetworkStream(); void SetNoDelay(bool noDelay); void Close(); }; } // namespace Tesses::Framework::Streams