blob: abc8ae1091da865ce86832dba2f30560c7109d41 [file] [log] [blame]
Elly Jonesa44d22d2012-01-05 18:05:56 -05001// Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
Elly Jonese7cb5b32011-12-01 14:18:32 -05002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Chana0011d82014-05-13 00:19:29 -07005#ifndef PING_TOOL_H_
6#define PING_TOOL_H_
Elly Jonese7cb5b32011-12-01 14:18:32 -05007
8#include <map>
9#include <string>
10
11#include <base/basictypes.h>
12#include <dbus-c++/dbus.h>
13
Elly Jones0c016cc2011-12-19 16:19:22 -050014#include "subprocess_tool.h"
15
Elly Jonese7cb5b32011-12-01 14:18:32 -050016namespace debugd {
17
Elly Jones0c016cc2011-12-19 16:19:22 -050018class PingTool : public SubprocessTool {
Elly Jonese7cb5b32011-12-01 14:18:32 -050019 public:
20 PingTool();
Ben Chana0011d82014-05-13 00:19:29 -070021 virtual ~PingTool();
Elly Jonese7cb5b32011-12-01 14:18:32 -050022
23 std::string Start(const DBus::FileDescriptor& outfd,
24 const std::string& destination,
25 const std::map<std::string, DBus::Variant>& options,
Ben Chana0011d82014-05-13 00:19:29 -070026 DBus::Error* error);
Elly Jonese7cb5b32011-12-01 14:18:32 -050027};
28
Ben Chana0011d82014-05-13 00:19:29 -070029} // namespace debugd
Elly Jonese7cb5b32011-12-01 14:18:32 -050030
Ben Chana0011d82014-05-13 00:19:29 -070031#endif // PING_TOOL_H_