Backed out changeset bcbab342eed8 (bug 1889658) for causing wpt reftest failures...
[gecko.git] / toolkit / system / windowsDHCPClient / DHCPUtils.h
blob20f2996acbca23da0e7e92290c354521be1553b3
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
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 #ifndef mozilla_toolkit_system_windowsDHCPClient_DHCPUtils_h
8 #define mozilla_toolkit_system_windowsDHCPClient_DHCPUtils_h
10 #include "WindowsNetworkFunctionsWrapper.h"
11 #include <vector>
13 namespace mozilla {
14 namespace toolkit {
15 namespace system {
16 namespace windowsDHCPClient {
18 nsresult GetActiveDHCPNetworkAdapterName(
19 nsACString& aNetworkAdapterName,
20 WindowsNetworkFunctionsWrapper* aWindowsNetworkFunctionsWrapper);
22 nsresult RetrieveOption(
23 const nsACString& aAdapterName, uint8_t aOption,
24 std::vector<char>& aOptionValueBuf, uint32_t* aOptionSize,
25 WindowsNetworkFunctionsWrapper* aWindowsNetworkFunctionsWrapper);
27 } // namespace windowsDHCPClient
28 } // namespace system
29 } // namespace toolkit
30 } // namespace mozilla
31 #endif // mozilla_toolkit_system_windowsDHCPClient_DHCPUtils_h