|
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, uuid(6b16fb1f-5709-4c94-a89f-a22be873c54d)] |
|
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 |
|
35 /** |
|
36 * @return whether the DNS service is offline. |
|
37 */ |
|
38 attribute boolean offline; |
|
39 }; |