1<html><head><meta http-equiv="Content-Type" content="text/html; charset=ANSI_X3.4-1968"><title>ieee80211_get_buffered_bc</title><meta name="generator" content="DocBook XSL Stylesheets V1.78.1"><link rel="home" href="index.html" title="The 802.11 subsystems – for kernel developers"><link rel="up" href="AP.html#ps-client" title="support for powersaving clients"><link rel="prev" href="AP.html#ps-client" title="support for powersaving clients"><link rel="next" href="API-ieee80211-beacon-get.html" title="ieee80211_beacon_get"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center"><span class="phrase">ieee80211_get_buffered_bc</span></th></tr><tr><td width="20%" align="left"><a accesskey="p" href="AP.html#ps-client">Prev</a> </td><th width="60%" align="center">support for powersaving clients</th><td width="20%" align="right"> <a accesskey="n" href="API-ieee80211-beacon-get.html">Next</a></td></tr></table><hr></div><div class="refentry"><a name="API-ieee80211-get-buffered-bc"></a><div class="titlepage"></div><div class="refnamediv"><h2>Name</h2><p>ieee80211_get_buffered_bc — 2 accessing buffered broadcast and multicast frames 3 </p></div><div class="refsynopsisdiv"><h2>Synopsis</h2><div class="funcsynopsis"><table border="0" class="funcprototype-table" summary="Function synopsis" style="cellspacing: 0; cellpadding: 0;"><tr><td><code class="funcdef">struct sk_buff * <b class="fsfunc">ieee80211_get_buffered_bc </b>(</code></td><td>struct ieee80211_hw * <var class="pdparam">hw</var>, </td></tr><tr><td> </td><td>struct ieee80211_vif * <var class="pdparam">vif</var><code>)</code>;</td></tr></table><div class="funcprototype-spacer"> </div></div></div><div class="refsect1"><a name="idp1114127732"></a><h2>Arguments</h2><div class="variablelist"><dl class="variablelist"><dt><span class="term"><em class="parameter"><code>hw</code></em></span></dt><dd><p> 4 pointer as obtained from <code class="function">ieee80211_alloc_hw</code>. 5 </p></dd><dt><span class="term"><em class="parameter"><code>vif</code></em></span></dt><dd><p> 6 <span class="structname">struct ieee80211_vif</span> pointer from the add_interface callback. 7 </p></dd></dl></div></div><div class="refsect1"><a name="idp1114130908"></a><h2>Description</h2><p> 8 Function for accessing buffered broadcast and multicast frames. If 9 hardware/firmware does not implement buffering of broadcast/multicast 10 frames when power saving is used, 802.11 code buffers them in the host 11 memory. The low-level driver uses this function to fetch next buffered 12 frame. In most cases, this is used when generating beacon frame. 13</p></div><div class="refsect1"><a name="idp1114131868"></a><h2>Return</h2><p> 14 A pointer to the next buffered skb or NULL if no more buffered 15 frames are available. 16</p></div><div class="refsect1"><a name="idp1114132564"></a><h2>Note</h2><p> 17 buffered frames are returned only after DTIM beacon frame was 18 generated with <code class="function">ieee80211_beacon_get</code> and the low-level driver must thus 19 call <code class="function">ieee80211_beacon_get</code> first. <code class="function">ieee80211_get_buffered_bc</code> returns 20 NULL if the previous generated beacon was not DTIM, so the low-level driver 21 does not need to check for DTIM beacons separately and should be able to 22 use common code for all beacons. 23</p></div></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="AP.html#ps-client">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="AP.html#ps-client">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="API-ieee80211-beacon-get.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">support for powersaving clients </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> <span class="phrase">ieee80211_beacon_get</span></td></tr></table></div></body></html> 24