Wed, 27 Jan 2021 14:06:45 +0200
deleted constructors from IPAddress
/* Copyright 2014 - 2016 Teemu Piippo All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #include "../main.h" struct sockaddr; struct sockaddr_in; BEGIN_ZFC_NAMESPACE struct IPAddress { enum { LOCALHOST = 0x7f000001 }; enum WithPort { WITH_PORT, NO_PORT }; class StringParseError : public std::exception { std::string m_message; public: StringParseError (std::string message) : m_message (message) {} const char* what() const throw() { return m_message.data(); } }; unsigned long host; unsigned short port; bool compare (const IPAddress& other) const; unsigned char octet (int n) const; void set_octet (int n, unsigned char oct); std::string to_string (WithPort withport = NO_PORT) const; sockaddr_in to_sockaddr_in() const; bool operator< (const IPAddress& other) const; bool operator== (const IPAddress& other) const { return compare (other); } bool operator!= (const IPAddress& other) const { return not compare (other); } unsigned char operator[] (int n) const { return octet (n); } static IPAddress from_string (std::string input); static IPAddress resolve (std::string node); }; END_ZFC_NAMESPACE