blob: 214ef1d6f257ec92aa6086ad9b7991c40ca7a98e [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 "shill/callback80211_object.h"
#include <string>
#include <base/memory/weak_ptr.h>
#include <base/stringprintf.h>
#include "shill/config80211.h"
#include "shill/ieee80211.h"
#include "shill/link_monitor.h"
#include "shill/logging.h"
#include "shill/nl80211_attribute.h"
#include "shill/nl80211_message.h"
#include "shill/scope_logger.h"
using base::Bind;
using base::StringAppendF;
using std::string;
namespace shill {
Callback80211Object::Callback80211Object()
: weak_ptr_factory_(this),
message_handler_(Bind(&Callback80211Object::ReceiveConfig80211Message,
weak_ptr_factory_.GetWeakPtr())) {
}
Callback80211Object::~Callback80211Object() {
DeinstallAsHandler();
}
void Callback80211Object::Config80211MessageHandler(
const NetlinkMessage &message) {
message.Print(10);
}
bool Callback80211Object::InstallAsBroadcastHandler() {
return Config80211::GetInstance()->AddBroadcastHandler(message_handler_);
}
bool Callback80211Object::DeinstallAsHandler() {
return Config80211::GetInstance()->RemoveBroadcastHandler(message_handler_);
}
void Callback80211Object::ReceiveConfig80211Message(const NetlinkMessage &msg) {
Config80211MessageHandler(msg);
}
} // namespace shill.