From: Chun-Yeow Yeoh Date: Mon, 14 May 2012 15:23:48 +0000 (+0800) Subject: iw: print out Mesh ID on scan X-Git-Tag: v3.5~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=720583e9a9fce9b760b8794118e7a5d54cb428f5;p=thirdparty%2Fiw.git iw: print out Mesh ID on scan Print out the mesh id element which is useful for a mesh node to scan for an existing mesh network --- diff --git a/scan.c b/scan.c index 110e1d3..5f8ce93 100644 --- a/scan.c +++ b/scan.c @@ -675,6 +675,7 @@ static const struct ie_print ieprinters[] = { [61] = { "HT operation", print_ht_op, 22, 22, BIT(PRINT_SCAN), }, [48] = { "RSN", print_rsn, 2, 255, BIT(PRINT_SCAN), }, [50] = { "Extended supported rates", print_supprates, 0, 255, BIT(PRINT_SCAN), }, + [114] = { "MESH ID", print_ssid, 0, 32, BIT(PRINT_SCAN) | BIT(PRINT_LINK), }, [127] = { "Extended capabilities", print_capabilities, 0, 255, BIT(PRINT_SCAN), }, };