netwerk/base/public/nsIIOService2.idl

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
michael@0 2 /* vim:expandtab:shiftwidth=4:tabstop=4:
michael@0 3 */
michael@0 4 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 5 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 7
michael@0 8 #include "nsIIOService.idl"
michael@0 9
michael@0 10 /**
michael@0 11 * nsIIOService2 extends nsIIOService
michael@0 12 */
michael@0 13 [scriptable, uuid(9a7dc724-0b5c-4b78-9722-1037074c02de)]
michael@0 14 interface nsIIOService2 : nsIIOService
michael@0 15 {
michael@0 16 /**
michael@0 17 * While this is set, IOService will monitor an nsINetworkLinkService
michael@0 18 * (if available) and set its offline status to "true" whenever
michael@0 19 * isLinkUp is false.
michael@0 20 *
michael@0 21 * Applications that want to control changes to the IOService's offline
michael@0 22 * status should set this to false, watch for network:link-status-changed
michael@0 23 * broadcasts, and change nsIIOService::offline as they see fit. Note
michael@0 24 * that this means during application startup, IOService may be offline
michael@0 25 * if there is no link, until application code runs and can turn off
michael@0 26 * this management.
michael@0 27 */
michael@0 28 attribute boolean manageOfflineStatus;
michael@0 29
michael@0 30 /**
michael@0 31 * Creates a channel for a given URI.
michael@0 32 *
michael@0 33 * @param aURI nsIURI from which to make a channel
michael@0 34 * @param aProxyURI nsIURI to use for proxy resolution. Can be null in which
michael@0 35 * case aURI is used
michael@0 36 * @param aProxyFlags flags from nsIProtocolProxyService to use
michael@0 37 * when resolving proxies for this new channel
michael@0 38 * @return reference to the new nsIChannel object
michael@0 39 */
michael@0 40 nsIChannel newChannelFromURIWithProxyFlags(in nsIURI aURI,
michael@0 41 in nsIURI aProxyURI,
michael@0 42 in unsigned long aProxyFlags);
michael@0 43 };

mercurial