The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/net80211/ieee80211_amrr.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*      $OpenBSD: ieee80211_amrr.h,v 1.3 2006/06/17 19:34:31 damien Exp $       */
    2 /*      $NetBSD: ieee80211_amrr.h,v 1.1 2006/10/31 21:53:41 joerg Exp $ */
    3 
    4 /*-
    5  * Copyright (c) 2006
    6  *      Damien Bergamini <damien.bergamini@free.fr>
    7  *
    8  * Permission to use, copy, modify, and distribute this software for any
    9  * purpose with or without fee is hereby granted, provided that the above
   10  * copyright notice and this permission notice appear in all copies.
   11  *
   12  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
   13  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
   14  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
   15  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
   16  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
   17  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
   18  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
   19  */
   20 #ifndef _NET80211_IEEE80211_AMRR_H_
   21 #define _NET80211_IEEE80211_AMRR_H_
   22 
   23 /*-
   24  * Naive implementation of the Adaptive Multi Rate Retry algorithm:
   25  *
   26  * "IEEE 802.11 Rate Adaptation: A Practical Approach"
   27  *  Mathieu Lacage, Hossein Manshaei, Thierry Turletti
   28  *  INRIA Sophia - Projet Planete
   29  *  http://www-sop.inria.fr/rapports/sophia/RR-5208.html
   30  */
   31 
   32 /*
   33  * Rate control settings.
   34  */
   35 struct ieee80211_amrr {
   36         u_int   amrr_min_success_threshold;
   37         u_int   amrr_max_success_threshold;
   38 };
   39 
   40 #define IEEE80211_AMRR_MIN_SUCCESS_THRESHOLD     1
   41 #define IEEE80211_AMRR_MAX_SUCCESS_THRESHOLD    15
   42 
   43 /*
   44  * Rate control state for a given node.
   45  */
   46 struct ieee80211_amrr_node {
   47         u_int   amn_success;
   48         u_int   amn_recovery;
   49         u_int   amn_success_threshold;
   50         u_int   amn_txcnt;
   51         u_int   amn_retrycnt;
   52 };
   53 
   54 void    ieee80211_amrr_node_init(struct ieee80211_amrr *,
   55             struct ieee80211_amrr_node *);
   56 void    ieee80211_amrr_choose(struct ieee80211_amrr *, struct ieee80211_node *,
   57             struct ieee80211_amrr_node *);
   58 
   59 #endif /* _NET80211_IEEE80211_AMRR_H_ */

Cache object: 3cf451c362ad6086ae575d0fe78e3672


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.