Bug 1807268 - Re-enable verifyShowClipboardSuggestionsToggleTest UI test r=jajohnson
[gecko.git] / netwerk / dns / nsPIDNSService.idl
blob6d65e6be41e06c491d0a136a7bb7936edc9408c6
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.
13 [scriptable, builtinclass, uuid(24e598fd-7b1a-436c-9154-14d8b38df8a5)]
14 interface nsPIDNSService : nsIDNSService
16 /**
17 * called to initialize the DNS service.
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.
28 void shutdown();
30 /**
31 * Whether or not DNS prefetching (aka RESOLVE_SPECULATE) is enabled
33 attribute boolean prefetchEnabled;