Hi everybody,

does anybody can help me understand
how the data members of the section
DUPLICATE DETECTION STATE (802.11 MAC)
are used.

They are:

/* ============================================================
00377            Duplicate Detection state
00378           
============================================================ */
00379         u_int16_t       sta_seqno_;     // next seqno that I'll use
00380         int             cache_node_count_;
00381         Host            *cache_;
================================================================

where Host is as follows

/* ======================================================================
00215    The following destination class is used for duplicate detection.
00216   
====================================================================== */
00217 class Host {
00218 public:
00219         LIST_ENTRY(Host) link;
00220         u_int32_t       index;
00221         u_int32_t       seqno;
00222 }

Cheers,
Antonio

-- 
Domenico Antonio Fittipali

Reply via email to