2011-06-21 21:42:20 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-06-21 21:42:20 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-06-21 21:42:20 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-06-21 21:42:20 +10:00
|
|
|
*
|
2016-01-19 18:30:53 +11:00
|
|
|
* Copyright 2011-2016 Danny Robson <danny@nerdcruft.net>
|
2011-06-21 21:42:20 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __UTIL_IP_HPP
|
|
|
|
#define __UTIL_IP_HPP
|
|
|
|
|
2011-06-29 21:28:34 +10:00
|
|
|
#include "range.hpp"
|
|
|
|
|
2011-06-21 21:42:20 +10:00
|
|
|
#include <cstdint>
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
|
|
|
|
namespace ipv4 {
|
|
|
|
struct ip {
|
2011-06-25 11:52:20 +10:00
|
|
|
union {
|
|
|
|
uint8_t m_octets[4];
|
|
|
|
uint32_t m_integer;
|
|
|
|
};
|
2011-06-21 21:42:20 +10:00
|
|
|
|
2015-06-04 22:18:43 +10:00
|
|
|
explicit ip (const std::string &);
|
|
|
|
explicit ip (uint32_t i);
|
2011-06-21 21:42:20 +10:00
|
|
|
ip (uint8_t a, uint8_t b, uint8_t c, uint8_t d);
|
|
|
|
|
|
|
|
ip& operator = (const ip &);
|
2011-06-25 11:52:59 +10:00
|
|
|
bool operator == (const ip &) const;
|
|
|
|
|
|
|
|
explicit operator uint32_t (void);
|
2011-06-21 21:42:20 +10:00
|
|
|
|
|
|
|
static ip parse (const std::string &);
|
2011-06-23 22:07:55 +10:00
|
|
|
|
|
|
|
static const ip LOOPBACK;
|
|
|
|
static const ip ANY;
|
2011-06-21 21:42:20 +10:00
|
|
|
};
|
|
|
|
|
2015-04-13 18:06:08 +10:00
|
|
|
|
2016-01-19 18:30:53 +11:00
|
|
|
typedef uint16_t port_t;
|
|
|
|
typedef uint32_t mask_t;
|
|
|
|
|
|
|
|
extern const util::range<port_t> WELL_KNOWN_PORT,
|
|
|
|
REGISTERED_PORT,
|
|
|
|
PRIVATE_PORT;
|
|
|
|
|
|
|
|
class error : public std::exception { };
|
2011-06-29 21:28:34 +10:00
|
|
|
|
2011-06-21 21:42:20 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-29 21:26:56 +10:00
|
|
|
namespace ipv6 {
|
|
|
|
struct ip {
|
|
|
|
uint32_t m_quads[4];
|
|
|
|
|
2015-06-04 22:18:43 +10:00
|
|
|
explicit ip (const std::string&) { ; }
|
2011-06-29 21:26:56 +10:00
|
|
|
};
|
|
|
|
|
2016-01-19 18:30:53 +11:00
|
|
|
typedef uint16_t port_t;
|
2011-06-29 21:26:56 +10:00
|
|
|
|
2016-01-19 18:30:53 +11:00
|
|
|
struct mask_t {
|
2011-06-29 21:26:56 +10:00
|
|
|
uint32_t m_quads[4];
|
|
|
|
|
2016-01-19 18:30:53 +11:00
|
|
|
explicit mask_t (uint32_t) { ; }
|
2011-06-29 21:26:56 +10:00
|
|
|
};
|
2016-01-19 18:30:53 +11:00
|
|
|
|
|
|
|
class error : public std::exception { };
|
2011-06-29 21:26:56 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-06-21 21:42:20 +10:00
|
|
|
#endif // __UTIL_IP_HPP
|