123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- // Copyright (C) 2012 Internet Systems Consortium, Inc. ("ISC")
- //
- // Permission to use, copy, modify, and/or distribute this software for any
- // purpose with or without fee is hereby granted, provided that the above
- // copyright notice and this permission notice appear in all copies.
- //
- // THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
- // REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
- // AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
- // INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
- // LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
- // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- // PERFORMANCE OF THIS SOFTWARE.
- #ifndef ADDR_UTILITIES_H
- #define ADDR_UTILITIES_H
- #include <asiolink/io_address.h>
- namespace isc {
- namespace dhcp {
- /// This code is based on similar code from the Dibbler project. I, Tomasz Mrugalski,
- /// as a sole creator of that code hereby release it under BSD license for the benefit
- /// of the BIND10 project.
- /// @brief returns a first address in a given prefix
- ///
- /// Example: For 2001:db8:1\::deaf:beef and length /120 the function will return
- /// 2001:db8:1\::dead:be00. See also @ref lastAddrInPrefix.
- ///
- /// @todo It currently works for v6 only and will throw if v4 address is passed.
- ///
- /// @param prefix and address that belongs to a prefix
- /// @param len prefix length
- ///
- /// @return first address from a prefix
- isc::asiolink::IOAddress firstAddrInPrefix(const isc::asiolink::IOAddress& prefix,
- uint8_t len);
- /// @brief returns a last address in a given prefix
- ///
- /// Example: For 2001:db8:1\::deaf:beef and length /112 the function will return
- /// 2001:db8:1\::dead:ffff. See also @ref firstAddrInPrefix.
- ///
- /// @todo It currently works for v6 only and will throw if v4 address is passed.
- ///
- /// @param prefix and address that belongs to a prefix
- /// @param len prefix length
- ///
- /// @return first address from a prefix
- isc::asiolink::IOAddress lastAddrInPrefix(const isc::asiolink::IOAddress& prefix,
- uint8_t len);
- /// @brief generates an IPv4 netmask of specified length
- /// @throw BadValue if len is greater than 32
- /// @return netmask
- isc::asiolink::IOAddress getNetmask4(uint8_t len);
- };
- };
- #endif // ADDR_UTILITIES_H
|