'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct srv_record

odtone::dns::srv_record

Synopsis

// In header: </home/carlos/Projectos/odtone/inc/odtone/net/dns/types.hpp>


struct srv_record {
  // construct/copy/destruct
  srv_record(uint16, uint16, uint16, std::string);

  // public data members
  uint16 _priority;
  uint16 _weight;
  uint16 _port;
  std::string _target;
};

Description

srv_record public construct/copy/destruct

  1. srv_record(uint16 priority, uint16 weight, uint16 port, std::string target);

PrevUpHomeNext