00001 /* ***** BEGIN LICENSE BLOCK ***** 00002 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 00003 * 00004 * The contents of this file are subject to the Mozilla Public License Version 00005 * 1.1 (the "License"); you may not use this file except in compliance with 00006 * the License. You may obtain a copy of the License at 00007 * http://www.mozilla.org/MPL/ 00008 * 00009 * Software distributed under the License is distributed on an "AS IS" basis, 00010 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 00011 * for the specific language governing rights and limitations under the 00012 * License. 00013 * 00014 * The Original Code is Mozilla. 00015 * 00016 * The Initial Developer of the Original Code is 00017 * Netscape Communications Corporation. 00018 * Portions created by the Initial Developer are Copyright (C) 2003 00019 * the Initial Developer. All Rights Reserved. 00020 * 00021 * Contributor(s): 00022 * Gordon Sheridan <gordon@netscape.com> 00023 * IBM Corp. 00024 * 00025 * Alternatively, the contents of this file may be used under the terms of 00026 * either the GNU General Public License Version 2 or later (the "GPL"), or 00027 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"), 00028 * in which case the provisions of the GPL or the LGPL are applicable instead 00029 * of those above. If you wish to allow use of your version of this file only 00030 * under the terms of either the GPL or the LGPL, and not to allow others to 00031 * use your version of this file under the terms of the MPL, indicate your 00032 * decision by deleting the provisions above and replace them with the notice 00033 * and other provisions required by the GPL or the LGPL. If you do not delete 00034 * the provisions above, a recipient may use your version of this file under 00035 * the terms of any one of the MPL, the GPL or the LGPL. 00036 * 00037 * ***** END LICENSE BLOCK ***** */ 00038 00039 #include "nsISupports.idl" 00040 00041 interface nsICancelable; 00042 interface nsIEventTarget; 00043 interface nsIDNSRecord; 00044 interface nsIDNSListener; 00045 00049 [scriptable, uuid(3ac9e611-e6b6-44b5-b312-c040e65b2929)] 00050 interface nsIDNSService : nsISupports 00051 { 00070 nsICancelable asyncResolve(in AUTF8String aHostName, 00071 in unsigned long aFlags, 00072 in nsIDNSListener aListener, 00073 in nsIEventTarget aListenerTarget); 00074 00088 nsIDNSRecord resolve(in AUTF8String aHostName, 00089 in unsigned long aFlags); 00090 00094 readonly attribute AUTF8String myHostName; 00095 00096 /************************************************************************* 00097 * Listed below are the various flags that may be OR'd together to form 00098 * the aFlags parameter passed to asyncResolve() and resolve(). 00099 */ 00100 00104 const unsigned long RESOLVE_BYPASS_CACHE = (1 << 0); 00105 00109 const unsigned long RESOLVE_CANONICAL_NAME = (1 << 1); 00110 };
1.4.4