blob: 9ecc739a70bfc7e7bab3f68c6a84777849609f5c [file] [log] [blame]
// Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef SHILL_DHCP_PROXY_INTERFACE_
#define SHILL_DHCP_PROXY_INTERFACE_
#include <string>
namespace shill {
// These are the functions that a DHCP proxy and listener must support.
class DHCPProxyInterface {
public:
virtual ~DHCPProxyInterface() {}
virtual void DoRebind(const std::string &interface) = 0;
};
class DHCPListenerInterface {
public:
virtual ~DHCPListenerInterface() {}
};
} // namespace shill
#endif // SHILL_DHCP_PROXY_INTERFACE_