* Initialize any mesh-specific node state. */
| 3356 | * Initialize any mesh-specific node state. |
| 3357 | */ |
| 3358 | void |
| 3359 | ieee80211_mesh_node_init(struct ieee80211vap *vap, struct ieee80211_node *ni) |
| 3360 | { |
| 3361 | ni->ni_flags |= IEEE80211_NODE_QOS; |
| 3362 | callout_init(&ni->ni_mltimer, 1); |
| 3363 | callout_init(&ni->ni_mlhtimer, 1); |
| 3364 | } |
| 3365 | |
| 3366 | /* |
| 3367 | * Cleanup any mesh-specific node state. |
no test coverage detected