1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 2<html xmlns="http://www.w3.org/1999/xhtml"> 3<head> 4<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" /> 5<meta http-equiv="Content-Style-Type" content="text/css" /> 6<title>WFSPacketBuffer</title> 7<link rel="stylesheet" href="../css/nitro.css" type="text/css" /> 8</head> 9 10<body> 11 12<h1>WFSPacketBuffer</h1> 13<h2>Definition</h2> 14 15<dl> 16 <dd> 17<code>#include <nitro/wfs.h></code><br /> 18 <br /> 19<pre> 20typedef struct WFSPacketBuffer 21{ 22 u8 *buffer; <font color="#008000">/* Send buffer or receive buffer */</font> 23 int length; <font color="#008000">/* Maximum send size or receive size */</font> 24 int bitmap; <font color="#008000">/* AID bitmap */</font> 25} 26WFSPacketBuffer; 27</pre> 28 <br /> 29 </dd> 30</dl> 31 32<h2>Elements</h2> 33<table border="1" width="100%"> 34 <tbody> 35 <tr> 36 <td>buffer</td> 37 <td>Send buffer or receive buffer</td> 38 </tr> 39 <tr> 40 <td>length</td> 41 <td>Maximum send size or receive data size</td> 42 </tr> 43 <tr> 44 <td>bitmap</td> 45 <td>Bitmap indicating sending peers or receiving peers</td> 46 </tr> 47 </tbody> 48</table> 49 50 51<h2>Description</h2> 52<p>This structure represents packet information used by the MP communication packet send/receive hook functions of the WFS library.</p> 53 54<h2>See Also</h2> 55<p><code><a href="server/WFS_CallServerPacketSendHook.html">WFS_CallServerPacketSendHook</a>, <a href="server/WFS_CallServerPacketRecvHook.html">WFS_CallServerPacketRecvHook</a>, <a href="client/WFS_CallClientPacketSendHook.html">WFS_CallClientPacketSendHook</a>, <a href="client/WFS_CallClientPacketRecvHook.html">WFS_CallClientPacketRecvHook</a></code></p> 56 57<h2>Revision History</h2> 58<p> 592007/06/06 Initial version. 60</p> 61<hr><p>CONFIDENTIAL</p></body> 62</html> 63