Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching defs:cb

341 static int auth_for_each_sta(void *ctx, int (*cb)(struct wpa_state_machine *sm,
351 if (peer->auth && cb(peer->auth, cb_ctx))
410 struct wpa_auth_callbacks cb;
423 os_memset(&cb, 0, sizeof(cb));
424 cb.ctx = ibss_rsn;
425 cb.logger = auth_logger;
426 cb.set_eapol = auth_set_eapol;
427 cb.send_eapol = auth_send_eapol;
428 cb.get_psk = auth_get_psk;
429 cb.set_key = auth_set_key;
430 cb.for_each_sta = auth_for_each_sta;
431 cb.disconnect = ibss_rsn_disconnect;
433 ibss_rsn->auth_group = wpa_init(own_addr, &conf, &cb);