Skip to content
  1. Jun 19, 2021
  2. Jun 18, 2021
    • francois parreaux-ey's avatar
      Update dns.inc.php · def458c7
      francois parreaux-ey authored
      Following below discussion (link) I propose to add DS RECORD functions for API
      https://www.howtoforge.com/community/threads/dnssec-cascade-inside-ispconfig.86988/#post-423182
      code added in 'interface/lib/classes/remote.d/dns.inc.php'
      // ----------------------------------------------------------------------------------------------------------------
      //* Get record details
      public function dns_ds_get($session_id, $primary_id) {
      return $this->dns_rr_get($session_id, $primary_id, 'DS');
      }
      //* Add a record
      public function dns_ds_add($session_id, $client_id, $params, $update_serial=false) {
      return $this->dns_rr_add($session_id, $client_id, $params, $update_serial, 'DS');
      }
      //* Update a record
      public function dns_ds_update($session_id, $client_id, $primary_id, $params, $update_serial=false) {
      return $this->dns_rr_update($session_id, $client_id, $primary_id, $params, $update_serial, 'DS');
      }
      //* Delete a record
      public function dns_ds_delete($session_id, $primary_id, $update_serial=false) {
      return $this->dns_rr_delete($session_id, $primary_id, $update_serial, 'DS');
      }
      def458c7
  3. Jun 08, 2021
  4. Jun 04, 2021
  5. Jun 03, 2021
  6. Jun 02, 2021
  7. May 25, 2021
  8. May 23, 2021
  9. May 21, 2021
  10. May 14, 2021
  11. Apr 26, 2021
  12. Apr 25, 2021
  13. Apr 21, 2021
  14. Apr 20, 2021
  15. Apr 11, 2021
  16. Apr 09, 2021