home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / dns / soa.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-09-17  |  2.0 KB  |  82 lines

  1. /*
  2.  * Copyright (C) 2004, 2005  Internet Systems Consortium, Inc. ("ISC")
  3.  * Copyright (C) 2000, 2001  Internet Software Consortium.
  4.  *
  5.  * Permission to use, copy, modify, and distribute this software for any
  6.  * purpose with or without fee is hereby granted, provided that the above
  7.  * copyright notice and this permission notice appear in all copies.
  8.  *
  9.  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
  10.  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
  11.  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
  12.  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
  13.  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
  14.  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  15.  * PERFORMANCE OF THIS SOFTWARE.
  16.  */
  17.  
  18. /* $Id: soa.h,v 1.3.18.2 2005/04/29 00:16:22 marka Exp $ */
  19.  
  20. #ifndef DNS_SOA_H
  21. #define DNS_SOA_H 1
  22.  
  23. /*****
  24.  ***** Module Info
  25.  *****/
  26.  
  27. /*! \file
  28.  * \brief
  29.  * SOA utilities.
  30.  */
  31.  
  32. /***
  33.  *** Imports
  34.  ***/
  35.  
  36. #include <isc/lang.h>
  37. #include <isc/types.h>
  38.  
  39. #include <dns/types.h>
  40.  
  41. ISC_LANG_BEGINDECLS
  42.  
  43. isc_uint32_t
  44. dns_soa_getserial(dns_rdata_t *rdata);
  45. isc_uint32_t
  46. dns_soa_getrefresh(dns_rdata_t *rdata);
  47. isc_uint32_t
  48. dns_soa_getretry(dns_rdata_t *rdata);
  49. isc_uint32_t
  50. dns_soa_getexpire(dns_rdata_t *rdata);
  51. isc_uint32_t
  52. dns_soa_getminimum(dns_rdata_t *rdata);
  53. /*
  54.  * Extract an integer field from the rdata of a SOA record.
  55.  *
  56.  * Requires:
  57.  *    rdata refers to the rdata of a well-formed SOA record.
  58.  */
  59.  
  60. void
  61. dns_soa_setserial(isc_uint32_t val, dns_rdata_t *rdata);
  62. void
  63. dns_soa_setrefresh(isc_uint32_t val, dns_rdata_t *rdata);
  64. void
  65. dns_soa_setretry(isc_uint32_t val, dns_rdata_t *rdata);
  66. void
  67. dns_soa_setexpire(isc_uint32_t val, dns_rdata_t *rdata);
  68. void
  69. dns_soa_setminimum(isc_uint32_t val, dns_rdata_t *rdata);
  70. /*
  71.  * Change an integer field of a SOA record by modifying the
  72.  * rdata in-place.
  73.  *
  74.  * Requires:
  75.  *    rdata refers to the rdata of a well-formed SOA record.
  76.  */
  77.  
  78.  
  79. ISC_LANG_ENDDECLS
  80.  
  81. #endif /* DNS_SOA_H */
  82.