summaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)AuthorFilesLines
2013-10-31Fix some random uninitialized-var warningsDavid Herrmann1-0/+4
Besides on r = 0; initialization, all of these are false warnings. Stupid gcc.. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
2013-10-30openwfd_ie: account for OUI in IE lengthDavid Herrmann1-19/+21
The OUI field is accounted for in IE length (thus allowing full 255 size). Account for that in the parser. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
2013-10-30openwfd_ie: support multi-IE sub-elementsDavid Herrmann1-70/+196
Sub-elements can span over multiple IEs. We simply concatenate the payloads and treat them as single uniform payload of a single IE. The IE headers must match for each concatenated IE, though. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>
2013-10-24openwfd_ie: add small IE print helperDavid Herrmann1-0/+231
tools/openwfd_ie is a small helper to work with WFD IEs. Useful to create IEs for wpa_supplicant. Signed-off-by: David Herrmann <dh.herrmann@gmail.com>