blob: 9743fce0b128e6ab65c6b646ec0309ef59a2b8da [file] [log] [blame]
Robert Quattlebaum4e0c2192017-02-08 12:13:19 -08001/*
Robert Quattlebaum6cfc4902017-07-14 12:18:39 -07002 * Copyright (C) 2017 The Android Open Source Project
Robert Quattlebaum4e0c2192017-02-08 12:13:19 -08003 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.net.lowpan;
18
Robert Quattlebaum6cfc4902017-07-14 12:18:39 -070019import android.net.lowpan.LowpanBeaconInfo;
20
Robert Quattlebaum4e0c2192017-02-08 12:13:19 -080021/** {@hide} */
22interface ILowpanNetScanCallback {
Robert Quattlebaum6cfc4902017-07-14 12:18:39 -070023 oneway void onNetScanBeacon(in LowpanBeaconInfo beacon);
Robert Quattlebaum4e0c2192017-02-08 12:13:19 -080024 oneway void onNetScanFinished();
25}