summaryrefslogtreecommitdiff
path: root/endpoint.cc
diff options
context:
space:
mode:
authormukesh agrawal <quiche@chromium.org>2011-06-07 17:39:22 -0700
committermukesh agrawal <quiche@chromium.org>2011-06-22 09:42:47 -0700
commitb54601c6f85577ab326da277356b88049d92ee2b (patch)
tree33fe7960e63d8953a73c526da5c7b65267f362d3 /endpoint.cc
parentf9b0ca8ba854fe017f6315b5d037aa7b6dfd7827 (diff)
downloadshill-b54601c6f85577ab326da277356b88049d92ee2b.tar.gz
shill: support association with open wifi access points
with this patch, shill organizes scan results into Endpoints and Services. although this patch does not communicate information about Services to the UI, one can connect to an open AP by sending the appropriate message to shill over D-Bus. known limitations: - does not communicate to UI - creates a Service for every Endpoint (note, however, that this does not provide the ability to connect to a specific AP) - only supports open networks note: a fix to memory management in wifi_integrationtest slipped into this patch. BUG=chromium-os:16065 TEST=manual: start shill, use dbus-send to tell shill to connect Change-Id: I26737f5e61b56497beffb9639f3e347a21ad76d7 Reviewed-on: http://gerrit.chromium.org/gerrit/2910 Reviewed-by: Chris Masone <cmasone@chromium.org> Tested-by: mukesh agrawal <quiche@chromium.org>
Diffstat (limited to 'endpoint.cc')
-rw-r--r--endpoint.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/endpoint.cc b/endpoint.cc
new file mode 100644
index 00000000..39cce5ed
--- /dev/null
+++ b/endpoint.cc
@@ -0,0 +1,12 @@
+// Copyright (c) 2011 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/endpoint.h"
+
+namespace shill {
+
+Endpoint::Endpoint() {}
+Endpoint::~Endpoint() {}
+
+} // namespace shill