'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct ip_config

odtone::mih::ip_config

Synopsis

// In header: </home/carlos/Projectos/odtone/inc/odtone/mih/types/ipconfig.hpp>


struct ip_config {

  // public member functions
  template<typename ArchiveT> void serialize(ArchiveT &);

  // public data members
  ip_cfg_methods ipcfgmethods;
  boost::variant< null, dhcp_serv > dhcpserv;
  boost::variant< null, fn_agent > fnagent;
  boost::variant< null, acc_rtr > accrtr;
};

Description

IP_CONFIG data type.

ip_config public member functions

  1. template<typename ArchiveT> void serialize(ArchiveT & ar);

    Serialize/deserialize the IP_CONFIG data type.

    Parameters:

    ar

    The archive to/from where serialize/deserialize the data type.

ip_config public public data members

  1. ip_cfg_methods ipcfgmethods;

    IP configuration methods

  2. boost::variant< null, dhcp_serv > dhcpserv;

    DHCP IP address

  3. boost::variant< null, fn_agent > fnagent;

    Foreign Agent IP Address

  4. boost::variant< null, acc_rtr > accrtr;

    Candidate access router IP address.


PrevUpHomeNext