'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct rq_result

odtone::mih::rq_result

Synopsis

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


struct rq_result {

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

  // public data members
  link_poa_list poa_list;
  qos_list poa_qos_list;
  boost::variant< null, bool, ip_cfg_methods > opt_ip_cfg_methods;
  boost::variant< null, bool, dhcp_serv > opt_dhcp_serv;
  boost::variant< null, bool, fn_agent > opt_fn_agnt;
  boost::variant< null, bool, acc_rtr > opt_acc_rtr;
};

Description

RQ_RESULT data type.

rq_result public member functions

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

    Serialize/deserialize the RQ_RESULT data type.

    Parameters:

    ar

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

rq_result public public data members

  1. link_poa_list poa_list;

    PoA list.

  2. qos_list poa_qos_list;

    Available resources for the PoA list.

  3. boost::variant< null, bool, ip_cfg_methods > opt_ip_cfg_methods;

    IP configuration method.

  4. boost::variant< null, bool, dhcp_serv > opt_dhcp_serv;

    DHCP server IP address.

  5. boost::variant< null, bool, fn_agent > opt_fn_agnt;

    Foreign agent IP address.

  6. boost::variant< null, bool, acc_rtr > opt_acc_rtr;

    Candidate access router IP address.


PrevUpHomeNext