LCOV - code coverage report
Current view: top level - src/libaddr - iface.h (source / functions) Hit Total Coverage
Test: coverage.info Lines: 1 1 100.0 %
Date: 2018-06-08 23:44:40 Functions: 4 4 100.0 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : // Network Address -- classes functions to ease handling IP addresses
       2             : // Copyright (c) 2012-2018  Made to Order Software Corp.  All Rights Reserved
       3             : //
       4             : // https://snapwebsites.org/project/libaddr
       5             : //
       6             : // Permission is hereby granted, free of charge, to any person obtaining a
       7             : // copy of this software and associated documentation files (the
       8             : // "Software"), to deal in the Software without restriction, including
       9             : // without limitation the rights to use, copy, modify, merge, publish,
      10             : // distribute, sublicense, and/or sell copies of the Software, and to
      11             : // permit persons to whom the Software is furnished to do so, subject to
      12             : // the following conditions:
      13             : //
      14             : // The above copyright notice and this permission notice shall be included
      15             : // in all copies or substantial portions of the Software.
      16             : //
      17             : // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
      18             : // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
      19             : // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
      20             : // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
      21             : // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
      22             : // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
      23             : // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
      24             : //
      25             : #pragma once
      26             : 
      27             : /** \file
      28             :  * \brief The various libaddr classes.
      29             :  *
      30             :  * This header includes the base addr class used to handle one binary
      31             :  * address.
      32             :  */
      33             : 
      34             : // addr library
      35             : //
      36             : #include <libaddr/addr.h>
      37             : 
      38             : 
      39             : 
      40             : namespace addr
      41             : {
      42             : 
      43             : 
      44             : 
      45        1408 : class iface
      46             : {
      47             : public:
      48             :     typedef std::shared_ptr<iface>   pointer_t;
      49             :     typedef std::vector<iface>       vector_t;
      50             : 
      51             :     static iface::vector_t          get_local_addresses();
      52             : 
      53             :     std::string                     get_name() const;
      54             :     unsigned int                    get_flags() const;
      55             :     addr const &                    get_address() const;
      56             :     addr const &                    get_broadcast_address() const;
      57             :     addr const &                    get_destination_address() const;
      58             : 
      59             :     bool                            has_broadcast_address() const;
      60             :     bool                            has_destination_address() const;
      61             : 
      62             : private:
      63             :     std::string                     f_name;
      64             :     unsigned int                    f_flags = 0;
      65             :     addr                            f_address;
      66             :     addr                            f_broadcast_address;
      67             :     addr                            f_destination_address;
      68             : };
      69             : 
      70             : 
      71             : 
      72             : iface::pointer_t find_addr_interface(addr const & a, bool allow_default_destination = false);
      73             : 
      74             : 
      75             : 
      76             : }
      77             : // addr namespace
      78             : // vim: ts=4 sw=4 et

Generated by: LCOV version 1.12