nsIDHCPClient.idl (640B)
1 /* -*- Mode: IDL; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ 2 /* This Source Code Form is subject to the terms of the Mozilla Public 3 * License, v. 2.0. If a copy of the MPL was not distributed with this 4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 5 6 #include "nsISupports.idl" 7 8 /** 9 * This interface allows the proxy code to access the DHCP Options in a platform-specific way 10 */ 11 [scriptable, uuid(aee75dc0-be1a-46b9-9e0c-31a6899c175c)] 12 interface nsIDHCPClient : nsISupports 13 { 14 15 /** 16 * returns the DHCP Option designated by the option parameter 17 */ 18 ACString getOption(in uint8_t option); 19 };