netwerk/dns/nsPIDNSService.idl

Wed, 31 Dec 2014 06:55:46 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:55:46 +0100
changeset 1
ca08bd8f51b2
permissions
-rw-r--r--

Added tag TORBROWSER_REPLICA for changeset 6474c204b198

     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/. */
     7 #include "nsIDNSService.idl"
     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, uuid(6b16fb1f-5709-4c94-a89f-a22be873c54d)]
    14 interface nsPIDNSService : nsIDNSService
    15 {
    16     /**
    17      * called to initialize the DNS service.
    18      */
    19     void init();
    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();
    30     /**
    31      * Whether or not DNS prefetching (aka RESOLVE_SPECULATE) is enabled
    32      */
    33     attribute boolean prefetchEnabled;
    35     /**
    36      * @return whether the DNS service is offline.
    37      */
    38     attribute boolean offline;
    39 };

mercurial