blob: f9ba5bd2bc66eb173b5b0c20f33460ccafd4b5e7 [file] [log] [blame]
Darin Petkov50308cd2011-06-01 18:25:07 -07001// Copyright (c) 2011 The Chromium OS 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
5#ifndef SHILL_DHCP_PROXY_INTERFACE_
6#define SHILL_DHCP_PROXY_INTERFACE_
7
8namespace shill {
9
10// These are the functions that a DHCP proxy and listener must support.
11class DHCPProxyInterface {
12 public:
13 virtual ~DHCPProxyInterface() {}
14};
15
16class DHCPListenerInterface {
17 public:
18 virtual ~DHCPListenerInterface() {}
19};
20
21} // namespace shill
22
23#endif // SHILL_DHCP_PROXY_INTERFACE_