pluto-src 0.1.1+0.10.4

Sources of Pluto (Lua 5.4 dialect) and logic to build it.
Documentation
#pragma once

#include "Scheduler.hpp"
#if !SOUP_WASM

#include "fwd.hpp"
#include "type.hpp"

NAMESPACE_SOUP
{
	class Server : public Scheduler
	{
	public:
		using udp_callback_t = void(*)(Socket&, SocketAddr&&, std::string&&) SOUP_EXCAL;

		bool bind(uint16_t port, ServerService* service) SOUP_EXCAL;
		bool bind(const IpAddr& ip, uint16_t port, ServerService* service) SOUP_EXCAL;
		bool bindCrypto(uint16_t port, ServerService* service, SharedPtr<CertStore> certstore, tls_server_on_client_hello_t on_client_hello = nullptr) SOUP_EXCAL;
		bool bindOptCrypto(uint16_t port, ServerService* service, SharedPtr<CertStore> certstore, tls_server_on_client_hello_t on_client_hello = nullptr) SOUP_EXCAL;
		bool bindUdp(uint16_t port, udp_callback_t callback) SOUP_EXCAL;
		bool bindUdp(const IpAddr& addr, uint16_t port, udp_callback_t callback) SOUP_EXCAL;
		bool bindUdp(uint16_t port, ServerServiceUdp* service) SOUP_EXCAL;
		bool bindUdp(const IpAddr& addr, uint16_t port, ServerServiceUdp* service) SOUP_EXCAL;
	protected:
		static void setDataAvailableHandler6(Socket& s) noexcept;
		static void setDataAvailableHandlerCrypto6(Socket& s) noexcept;
		static void setDataAvailableHandlerOptCrypto6(Socket& s) noexcept;
#if SOUP_WINDOWS
		static void setDataAvailableHandler4(Socket& s) noexcept;
		static void setDataAvailableHandlerCrypto4(Socket& s) noexcept;
		static void setDataAvailableHandlerOptCrypto4(Socket& s) noexcept;
#endif
		static void setDataAvailableHandlerUdp(Socket& s, udp_callback_t callback) noexcept;
		static void setDataAvailableHandlerUdp(Socket& s, ServerServiceUdp* service) noexcept;
	};
}
#endif