'ODTONE - Open Dot Twenty One'

PrevUpHomeNext

Struct naptr_record

odtone::dns::naptr_record

Synopsis

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


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

  // public data members
  uint16 _order;
  uint16 _preference;
  std::string _flags;
  std::string _service;
  std::string _regex;
  std::string _replacement;
};

Description

naptr_record public construct/copy/destruct

  1. naptr_record(uint16 order, uint16 preference, std::string flags, 
                 std::string service, std::string regex, std::string replacement);

PrevUpHomeNext