tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

nsPIDNSService.idl (1160B)


      1 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim:set ts=2 sw=2 sts=2 et cindent: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #include "nsIDNSService.idl"
      8 
      9 /**
     10 * This is a private interface used by the internals of the networking library.
     11 * It will never be frozen.  Do not use it in external code.
     12 */
     13 [scriptable, builtinclass, uuid(24e598fd-7b1a-436c-9154-14d8b38df8a5)]
     14 interface nsPIDNSService : nsIDNSService
     15 {
     16    /**
     17     * called to initialize the DNS service.
     18     */
     19    void init();
     20 
     21    /**
     22     * called to shutdown the DNS service.  any pending asynchronous
     23     * requests will be canceled, and the local cache of DNS records
     24     * will be cleared.  NOTE: the operating system may still have
     25     * its own cache of DNS records, which would be unaffected by
     26     * this method.
     27     */
     28    void shutdown();
     29 
     30    /**
     31     * Whether or not DNS prefetching (aka RESOLVE_SPECULATE) is enabled
     32     */
     33    attribute boolean prefetchEnabled;
     34 };