OLD | NEW |
---|---|
(Empty) | |
1 # Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 # Create and connect to an IBSS (AdHoc) server. | |
6 { "name":"CheckIBSS", | |
7 "steps":[ # Channel [1,6,11] | |
8 [ "create", { "type":"ibss" } ], | |
9 [ "config", { "channel":"2412", "mode":"11b" } ], | |
10 # There's a delay before the IBSS service becomes ready | |
11 [ "sleep", { "time": "5" } ], | |
12 [ "connect", { "security":"none", "mode":"adhoc" } ], | |
Sam Leffler
2011/03/03 22:12:15
is it possible to wait for iw event to tell us we'
Paul Stewart
2011/03/03 22:42:27
Will try to work this into a different commit afte
| |
13 [ "client_ping", { "count":"10" } ], | |
14 [ "destroy" ], | |
15 ], | |
16 } | |
OLD | NEW |