1. NAME

cfg80211_send_rx_assoc - notification of processed association

2. SYNOPSIS

void cfg80211_send_rx_assoc(struct net_device *  dev , struct cfg80211_bss *  bss , const u8 *  buf , size_t  len );

3. ARGUMENTS

dev
    network device

bss
    the BSS struct association was requested for, the struct reference is owned by cfg80211 after this call

buf
    (re)association response frame (header + body)

len
    length of the frame data

4. DESCRIPTION

This function is called whenever a (re)association response has been processed in station mode. The driver is required to call either this function or cfg80211_send_assoc_timeout to indicate the result of

5. CFG80211_OPS

:assoc call. This function may sleep.

6. AUTHOR

Johannes Berg <>
    Author.

7. COPYRIGHT