svn commit: r195309 - projects/mesh11s/sys/net80211
Rui Paulo
rpaulo at FreeBSD.org
Fri Jul 3 14:43:50 UTC 2009
Author: rpaulo
Date: Fri Jul 3 14:43:48 2009
New Revision: 195309
URL: http://svn.freebsd.org/changeset/base/195309
Log:
Style.
Sponsored by: The FreeBSD Foundation
Modified:
projects/mesh11s/sys/net80211/ieee80211_hwmp.c
Modified: projects/mesh11s/sys/net80211/ieee80211_hwmp.c
==============================================================================
--- projects/mesh11s/sys/net80211/ieee80211_hwmp.c Fri Jul 3 14:43:29 2009 (r195308)
+++ projects/mesh11s/sys/net80211/ieee80211_hwmp.c Fri Jul 3 14:43:48 2009 (r195309)
@@ -66,47 +66,56 @@ __FBSDID("$FreeBSD$");
static struct ieee80211_hwmp_route *
hwmp_rt_find(struct ieee80211vap *,
- const uint8_t [IEEE80211_ADDR_LEN]);
+ const uint8_t [IEEE80211_ADDR_LEN]);
static struct ieee80211_hwmp_route *
hwmp_rt_add(struct ieee80211vap *,
- const uint8_t [IEEE80211_ADDR_LEN]);
+ const uint8_t [IEEE80211_ADDR_LEN]);
static void hwmp_rt_del(struct ieee80211vap *,
- const uint8_t [IEEE80211_ADDR_LEN]);
+ const uint8_t [IEEE80211_ADDR_LEN]);
static void hwmp_rt_flush(struct ieee80211vap *);
static int ieee80211_hwmp_send_action(struct ieee80211_node *,
- const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN],
- uint8_t *, size_t);
-static uint8_t *hwmp_add_meshpreq(uint8_t *,
- const struct ieee80211_meshpreq_ie *);
-static uint8_t *hwmp_add_meshprep(uint8_t *,
- const struct ieee80211_meshprep_ie *);
-static uint8_t *hwmp_add_meshperr(uint8_t *,
- const struct ieee80211_meshperr_ie *);
-static uint8_t *hwmp_add_meshrann(uint8_t *,
- const struct ieee80211_meshrann_ie *);
+ const uint8_t [IEEE80211_ADDR_LEN],
+ const uint8_t [IEEE80211_ADDR_LEN],
+ uint8_t *, size_t);
+static uint8_t * hwmp_add_meshpreq(uint8_t *,
+ const struct ieee80211_meshpreq_ie *);
+static uint8_t * hwmp_add_meshprep(uint8_t *,
+ const struct ieee80211_meshprep_ie *);
+static uint8_t * hwmp_add_meshperr(uint8_t *,
+ const struct ieee80211_meshperr_ie *);
+static uint8_t * hwmp_add_meshrann(uint8_t *,
+ const struct ieee80211_meshrann_ie *);
static void hwmp_rootmode_setup(struct ieee80211vap *);
static void hwmp_rootmode_cb(void *);
static void hwmp_rootmode_rann_cb(void *);
static void hwmp_recv_preq(struct ieee80211vap *, struct ieee80211_node *,
- const struct ieee80211_frame *, const struct ieee80211_meshpreq_ie *);
+ const struct ieee80211_frame *,
+ const struct ieee80211_meshpreq_ie *);
static int hwmp_send_preq(struct ieee80211_node *,
- const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN],
- struct ieee80211_meshpreq_ie *);
+ const uint8_t [IEEE80211_ADDR_LEN],
+ const uint8_t [IEEE80211_ADDR_LEN],
+ struct ieee80211_meshpreq_ie *);
static void hwmp_recv_prep(struct ieee80211vap *, struct ieee80211_node *,
- const struct ieee80211_frame *, const struct ieee80211_meshprep_ie *);
+ const struct ieee80211_frame *,
+ const struct ieee80211_meshprep_ie *);
static int hwmp_send_prep(struct ieee80211_node *,
- const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN],
- struct ieee80211_meshprep_ie *);
+ const uint8_t [IEEE80211_ADDR_LEN],
+ const uint8_t [IEEE80211_ADDR_LEN],
+ struct ieee80211_meshprep_ie *);
static void hwmp_recv_perr(struct ieee80211vap *, struct ieee80211_node *,
- const struct ieee80211_frame *, const struct ieee80211_meshperr_ie *);
+ const struct ieee80211_frame *,
+ const struct ieee80211_meshperr_ie *);
static int hwmp_send_perr(struct ieee80211_node *,
- const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN],
- struct ieee80211_meshperr_ie *);
+ const uint8_t [IEEE80211_ADDR_LEN],
+ const uint8_t [IEEE80211_ADDR_LEN],
+ struct ieee80211_meshperr_ie *);
static void hwmp_recv_rann(struct ieee80211vap *, struct ieee80211_node *,
- const struct ieee80211_frame *, const struct ieee80211_meshrann_ie *);
+ const struct ieee80211_frame *,
+ const struct ieee80211_meshrann_ie *);
static inline int hwmp_send_rann(struct ieee80211_node *,
- const uint8_t [IEEE80211_ADDR_LEN], const uint8_t [IEEE80211_ADDR_LEN],
- struct ieee80211_meshrann_ie *);
+ const uint8_t [IEEE80211_ADDR_LEN],
+ const uint8_t [IEEE80211_ADDR_LEN],
+ struct ieee80211_meshrann_ie *);
static int ieee80211_hwmp_targetonly = 0;
static int ieee80211_hwmp_replyforward = 1;
More information about the svn-src-projects
mailing list