Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(388)

Side by Side Diff: net/proxy/dhcpcsvc_init_win.h

Issue 6831025: Adds support for the DHCP portion of the WPAD (proxy auto-discovery) protocol. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix memory leaks in unit test. Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 #ifndef NET_PROXY_DHCPCSVC_INIT_WIN_H
5 #define NET_PROXY_DHCPCSVC_INIT_WIN_H
6 #pragma once
7
8 namespace net {
9
10 // Initialization of the Dhcpcsvc library must happen before any of its
11 // calls are made. This function will make sure that the appropriate
12 // initialization has been done, and that uninitialization is also
13 // performed at static uninitialization time.
14 //
15 // Note: This initializes only for DHCP, not DHCPv6.
16 void EnsureDhcpcsvcInit();
17
18 } // namespace net
19
20 #endif // NET_PROXY_DHCPCSVC_INIT_WIN_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698