blob: 6b6242443e3626b613e3e73e4bf505384056920d [file] [log] [blame]
// Copyright (c) 2012 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.
#include "netif_tool.h"
#include <string>
#include <dbus-c++/dbus.h>
#include "process_with_output.h"
using base::StringPrintf;
namespace debugd {
NetifTool::NetifTool() { }
NetifTool::~NetifTool() { }
std::string NetifTool::GetInterfaces(DBus::Error* error) {
std::string path;
if (!SandboxedProcess::GetHelperPath("netif", &path))
return "<path too long>";
ProcessWithOutput p;
if (!p.Init())
return "<can't create process>";
p.AddArg(path);
p.Run();
std::string out;
p.GetOutput(&out);
return out;
}
} // namespace debugd