blob: 1c2d93dd45230a26619314d1f3453dcba2667fa2 [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.
#ifndef SHILL_MM1_BEARER_PROXY_INTERFACE_H_
#define SHILL_MM1_BEARER_PROXY_INTERFACE_H_
#include <string>
#include <base/basictypes.h>
#include "shill/callbacks.h"
namespace shill {
class Error;
namespace mm1 {
// These are the methods that an org.freedesktop.ModemManager1.Bearer
// proxy must support. The interface is provided so that it can be mocked
// in tests. All calls are made asynchronously. Call completion is signalled
// via callbacks passed to the methods.
class BearerProxyInterface {
public:
virtual ~BearerProxyInterface() {}
virtual void Connect(Error *error,
const ResultCallback &callback,
int timeout) = 0;
virtual void Disconnect(Error *error,
const ResultCallback &callback,
int timeout) = 0;
// Properties
virtual const std::string Interface() = 0;
virtual bool Connected() = 0;
virtual bool Suspended() = 0;
virtual const DBusPropertiesMap Ip4Config() = 0;
virtual const DBusPropertiesMap Ip6Config() = 0;
virtual uint32_t IpTimeout() = 0;
virtual const DBusPropertiesMap Properties() = 0;
};
} // namespace mm1
} // namespace shill
#endif // SHILL_MM1_BEARER_PROXY_INTERFACE_H_