diff options
author | Javier Cardona <javier@cozybit.com> | 2011-04-07 18:08:27 -0400 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2011-04-12 16:57:37 -0400 |
commit | 581a8b0feeed8877aab3a8ca4c972419790cd07f (patch) | |
tree | 36ef0e86b367e0abeb0a50fbf59840f125efdbc7 /include/net/cfg80211.h | |
parent | a22e93f5d819f11d2a2d6332e20ff5b462e5c208 (diff) |
nl80211: rename NL80211_MESH_SETUP_VENDOR_PATH_SEL_IE
To NL80211_MESH_SETUP_IE. This reflects our ability to insert any ie
into a mesh beacon, not simply path selection ies.
Signed-off-by: Javier Cardona <javier@cozybit.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'include/net/cfg80211.h')
-rw-r--r-- | include/net/cfg80211.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h index ba7384acf4e0..1d02ddf5a8a3 100644 --- a/include/net/cfg80211.h +++ b/include/net/cfg80211.h | |||
@@ -689,8 +689,8 @@ struct mesh_config { | |||
689 | * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes | 689 | * @mesh_id_len: length of the mesh ID, at least 1 and at most 32 bytes |
690 | * @path_sel_proto: which path selection protocol to use | 690 | * @path_sel_proto: which path selection protocol to use |
691 | * @path_metric: which metric to use | 691 | * @path_metric: which metric to use |
692 | * @vendor_ie: vendor information elements (optional) | 692 | * @ie: vendor information elements (optional) |
693 | * @vendor_ie_len: length of vendor information elements | 693 | * @ie_len: length of vendor information elements |
694 | * | 694 | * |
695 | * These parameters are fixed when the mesh is created. | 695 | * These parameters are fixed when the mesh is created. |
696 | */ | 696 | */ |
@@ -699,8 +699,8 @@ struct mesh_setup { | |||
699 | u8 mesh_id_len; | 699 | u8 mesh_id_len; |
700 | u8 path_sel_proto; | 700 | u8 path_sel_proto; |
701 | u8 path_metric; | 701 | u8 path_metric; |
702 | const u8 *vendor_ie; | 702 | const u8 *ie; |
703 | u8 vendor_ie_len; | 703 | u8 ie_len; |
704 | }; | 704 | }; |
705 | 705 | ||
706 | /** | 706 | /** |