blob: 019d653c3bd2fe2d80de152d1f1422ebee849ec2 [file] [log] [blame]
Darin Petkov1c115202012-03-22 15:35:47 +01001// Copyright (c) 2012 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 "shill/openvpn_management_server.h"
6
7#include <base/logging.h>
8
9namespace shill {
10
11OpenVPNManagementServer::OpenVPNManagementServer(OpenVPNDriver *driver)
12 : driver_(driver) {}
13
14OpenVPNManagementServer::~OpenVPNManagementServer() {}
15
16bool OpenVPNManagementServer::Init() {
17 VLOG(2) << __func__;
18 return false;
19}
20
21} // namespace shill