Home
last modified time | relevance | path

Searched refs:upd (Results 1 – 2 of 2) sorted by relevance

/hostap-latest/hs20/server/
Dspp_server.c1453 xml_node_t *pps, *c, *trust, *aaa, *aaa1, *upd, *homesp, *p; in build_pps() local
1490 upd = xml_node_create(ctx->xml, p, NULL, "PolicyUpdate"); in build_pps()
1491 add_text_node(ctx, upd, "UpdateInterval", "30"); in build_pps()
1492 add_text_node(ctx, upd, "UpdateMethod", "SPP-ClientInitiated"); in build_pps()
1493 add_text_node(ctx, upd, "Restriction", "Unrestricted"); in build_pps()
1494 add_text_node_conf(ctx, realm, upd, "URI", "policy_url"); in build_pps()
1495 trust = xml_node_create(ctx->xml, upd, NULL, "TrustRoot"); in build_pps()
1504 upd = xml_node_create(ctx->xml, c, NULL, "SubscriptionUpdate"); in build_pps()
1505 add_text_node(ctx, upd, "UpdateInterval", "4294967295"); in build_pps()
1506 add_text_node(ctx, upd, "UpdateMethod", "SPP-ClientInitiated"); in build_pps()
[all …]
/hostap-latest/src/drivers/
Ddriver_nl80211.c5581 struct nl80211_sta_flag_update upd; in wpa_driver_nl80211_sta_add() local
5753 os_memset(&upd, 0, sizeof(upd)); in wpa_driver_nl80211_sta_add()
5754 upd.set = sta_flags_nl80211(params->flags); in wpa_driver_nl80211_sta_add()
5755 upd.mask = upd.set | sta_flags_nl80211(params->flags_mask); in wpa_driver_nl80211_sta_add()
5775 upd.mask &= ~(BIT(NL80211_STA_FLAG_ASSOCIATED) | in wpa_driver_nl80211_sta_add()
5780 upd.mask |= BIT(NL80211_STA_FLAG_AUTHENTICATED); in wpa_driver_nl80211_sta_add()
5782 upd.mask |= BIT(NL80211_STA_FLAG_ASSOCIATED); in wpa_driver_nl80211_sta_add()
5796 upd.set, upd.mask); in wpa_driver_nl80211_sta_add()
5797 if (nla_put(msg, NL80211_ATTR_STA_FLAGS2, sizeof(upd), &upd)) in wpa_driver_nl80211_sta_add()
6352 struct nl80211_sta_flag_update upd; in wpa_driver_nl80211_sta_set_flags() local
[all …]