blob: 506636927736d2a5171778dd9f7c8a4e74d189d8 [file] [log] [blame]
Paul Stewartf1ce5d22011-05-19 13:10:20 -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#include <time.h>
6#include <stdio.h>
7#include <netinet/ether.h>
8#include <linux/if.h>
9
10#include <string>
11
12#include <base/logging.h>
13
14#include "shill/control_interface.h"
15#include "shill/device.h"
16#include "shill/device_info.h"
17#include "shill/manager.h"
18#include "shill/shill_event.h"
19
20#include "shill/ethernet.h"
21#include "shill/ethernet_service.h"
22
23using std::string;
24
25namespace shill {
26EthernetService::EthernetService(ControlInterface *control_interface,
27 EventDispatcher *dispatcher,
28 Ethernet *device)
29 : Service(control_interface, dispatcher, device),
30 ethernet_(device) {
31}
32
33EthernetService::~EthernetService() { }
34
35void EthernetService::Connect() { }
36
37void EthernetService::Disconnect() { }
38
39} // namespace shill