Home
last modified time | relevance | path

Searched refs:sm (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/freebsd/contrib/wpa/src/pae/
H A Dieee802_1x_cp.c96 static int changed_cipher(struct ieee802_1x_cp_sm *sm) in changed_cipher() argument
98 return sm->confidentiality_offset != sm->cipher_offset || in changed_cipher()
99 sm->current_cipher_suite != sm->cipher_suite; in changed_cipher()
103 static int changed_connect(struct ieee802_1x_cp_sm *sm) in changed_connect() argument
105 return sm->connect != SECURE || sm->chgd_server || changed_cipher(sm); in changed_connect()
113 sm->controlled_port_enabled = false; in SM_STATE()
114 secy_cp_control_enable_port(sm->kay, sm->controlled_port_enabled); in SM_STATE()
116 sm->port_valid = false; in SM_STATE()
118 os_free(sm->lki); in SM_STATE()
119 sm->lki = NULL; in SM_STATE()
[all …]
/freebsd/contrib/wpa/src/eapol_supp/
H A Deapol_supp_sm.c152 static void eapol_sm_txLogoff(struct eapol_sm *sm);
153 static void eapol_sm_txStart(struct eapol_sm *sm);
154 static void eapol_sm_processKey(struct eapol_sm *sm);
155 static void eapol_sm_getSuppRsp(struct eapol_sm *sm);
156 static void eapol_sm_txSuppRsp(struct eapol_sm *sm);
157 static void eapol_sm_abortSupp(struct eapol_sm *sm);
158 static void eapol_sm_abort_cached(struct eapol_sm *sm);
160 static void eapol_sm_set_port_authorized(struct eapol_sm *sm);
161 static void eapol_sm_set_port_unauthorized(struct eapol_sm *sm);
168 struct eapol_sm *sm = timeout_ctx; in eapol_port_timers_tick() local
[all …]
H A Deapol_supp_sm.h331 void eapol_sm_deinit(struct eapol_sm *sm);
332 void eapol_sm_step(struct eapol_sm *sm);
333 int eapol_sm_get_status(struct eapol_sm *sm, char *buf, size_t buflen,
335 int eapol_sm_get_mib(struct eapol_sm *sm, char *buf, size_t buflen);
336 void eapol_sm_configure(struct eapol_sm *sm, int heldPeriod, int authPeriod,
338 int eapol_sm_rx_eapol(struct eapol_sm *sm, const u8 *src, const u8 *buf,
340 void eapol_sm_notify_tx_eapol_key(struct eapol_sm *sm);
341 void eapol_sm_notify_portEnabled(struct eapol_sm *sm, bool enabled);
342 void eapol_sm_notify_portValid(struct eapol_sm *sm, bool valid);
343 void eapol_sm_notify_eap_success(struct eapol_sm *sm, bool success);
[all …]
/freebsd/contrib/wpa/src/eap_server/
H A Deap_server.c28 static int eap_sm_calculateTimeout(struct eap_sm *sm, int retransCount,
31 static void eap_sm_parseEapResp(struct eap_sm *sm, const struct wpabuf *resp);
33 static struct wpabuf * eap_sm_buildSuccess(struct eap_sm *sm, u8 id);
34 static struct wpabuf * eap_sm_buildFailure(struct eap_sm *sm, u8 id);
35 static int eap_sm_nextId(struct eap_sm *sm, int id);
36 static void eap_sm_Policy_update(struct eap_sm *sm, const u8 *nak_list,
38 static enum eap_type eap_sm_Policy_getNextMethod(struct eap_sm *sm,
40 static int eap_sm_Policy_getDecision(struct eap_sm *sm);
41 static bool eap_sm_Policy_doPickUp(struct eap_sm *sm, enum eap_type method);
44 static int eap_get_erp_send_reauth_start(struct eap_sm *sm) in eap_get_erp_send_reauth_start() argument
[all …]
H A Deap_server_ttls.c24 static void eap_ttls_reset(struct eap_sm *sm, void *priv);
79 static void eap_ttls_valid_session(struct eap_sm *sm, in eap_ttls_valid_session() argument
84 if (!sm->cfg->tls_session_lifetime) in eap_ttls_valid_session()
87 buf = wpabuf_alloc(1 + 1 + sm->identity_len); in eap_ttls_valid_session()
91 if (sm->identity) { in eap_ttls_valid_session()
94 if (sm->identity_len <= 255) in eap_ttls_valid_session()
95 id_len = sm->identity_len; in eap_ttls_valid_session()
99 wpabuf_put_data(buf, sm->identity, id_len); in eap_ttls_valid_session()
331 static u8 * eap_ttls_implicit_challenge(struct eap_sm *sm, in eap_ttls_implicit_challenge() argument
334 return eap_server_tls_derive_key(sm, &data->ssl, "ttls challenge", in eap_ttls_implicit_challenge()
[all …]
/freebsd/contrib/wpa/src/eapol_auth/
H A Deapol_auth_sm.c23 #define STATE_MACHINE_ADDR sm->addr
30 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 1)
32 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 0)
35 #define txCannedFail() eapol_auth_tx_canned_eap(sm, 0)
36 #define txCannedSuccess() eapol_auth_tx_canned_eap(sm, 1)
37 #define txReq() eapol_auth_tx_req(sm)
38 #define abortAuth() sm->eapol->cb.abort_auth(sm->eapol->conf.ctx, sm->sta)
39 #define txKey() sm->eapol->cb.tx_key(sm->eapol->conf.ctx, sm->sta)
43 static void eapol_sm_step_run(struct eapol_state_machine *sm);
45 static void eapol_auth_initialize(struct eapol_state_machine *sm);
[all …]
H A Deapol_auth_dump.c121 int eapol_auth_dump_state(struct eapol_state_machine *sm, char *buf, in eapol_auth_dump_state() argument
132 sm->aWhile, sm->quietWhile, sm->reAuthWhen); in eapol_auth_dump_state()
158 _SB(sm->authAbort), in eapol_auth_dump_state()
159 _SB(sm->authFail), in eapol_auth_dump_state()
160 port_state_txt(sm->authPortStatus), in eapol_auth_dump_state()
161 _SB(sm->authStart), in eapol_auth_dump_state()
162 _SB(sm->authTimeout), in eapol_auth_dump_state()
163 _SB(sm->authSuccess), in eapol_auth_dump_state()
164 _SB(sm->eap_if->eapFail), in eapol_auth_dump_state()
165 _SB(sm->eapolEap), in eapol_auth_dump_state()
[all …]
/freebsd/contrib/wpa/src/eap_peer/
H A Deap.c40 static bool eap_sm_allowMethod(struct eap_sm *sm, int vendor,
42 static struct wpabuf * eap_sm_buildNak(struct eap_sm *sm, int id);
43 static void eap_sm_processIdentity(struct eap_sm *sm,
45 static void eap_sm_processNotify(struct eap_sm *sm, const struct wpabuf *req);
47 static void eap_sm_parseEapReq(struct eap_sm *sm, const struct wpabuf *req);
52 static void eap_sm_request(struct eap_sm *sm, enum wpa_ctrl_req_type field,
57 static bool eapol_get_bool(struct eap_sm *sm, enum eapol_bool_var var) in eapol_get_bool() argument
59 return sm->eapol_cb->get_bool(sm->eapol_ctx, var); in eapol_get_bool()
63 static void eapol_set_bool(struct eap_sm *sm, enum eapol_bool_var var, in eapol_set_bool() argument
66 sm->eapol_cb->set_bool(sm->eapol_ctx, var, value); in eapol_set_bool()
[all …]
/freebsd/contrib/wpa/src/rsn_supp/
H A Dwpa.c91 int wpa_eapol_key_send(struct wpa_sm *sm, struct wpa_ptk *ptk, in wpa_eapol_key_send() argument
96 size_t mic_len = wpa_mic_len(sm->key_mgmt, sm->pmk_len); in wpa_eapol_key_send()
100 MAC2STR(dest), ver, (int) mic_len, sm->key_mgmt); in wpa_eapol_key_send()
101 if (is_zero_ether_addr(dest) && is_zero_ether_addr(sm->bssid)) { in wpa_eapol_key_send()
106 if (wpa_sm_get_bssid(sm, sm->bssid) < 0) { in wpa_eapol_key_send()
107 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, in wpa_eapol_key_send()
111 dest = sm->bssid; in wpa_eapol_key_send()
112 wpa_dbg(sm->ctx->msg_ctx, MSG_DEBUG, in wpa_eapol_key_send()
124 wpa_eapol_key_mic(ptk->kck, ptk->kck_len, sm->key_mgmt, ver, in wpa_eapol_key_send()
126 wpa_msg(sm->ctx->msg_ctx, MSG_ERROR, in wpa_eapol_key_send()
[all …]
H A Dwpa_ft.c29 static void wpa_ft_pasn_store_r1kh(struct wpa_sm *sm, const u8 *bssid);
31 static void wpa_ft_pasn_store_r1kh(struct wpa_sm *sm, const u8 *bssid) in wpa_ft_pasn_store_r1kh() argument
37 int wpa_derive_ptk_ft(struct wpa_sm *sm, const unsigned char *src_addr, in wpa_derive_ptk_ft() argument
42 int use_sha384 = wpa_key_mgmt_sha384(sm->key_mgmt); in wpa_derive_ptk_ft()
47 if (sm->xxkey_len > 0) { in wpa_derive_ptk_ft()
48 mpmk = sm->xxkey; in wpa_derive_ptk_ft()
49 mpmk_len = sm->xxkey_len; in wpa_derive_ptk_ft()
50 } else if (sm->cur_pmksa) { in wpa_derive_ptk_ft()
51 mpmk = sm->cur_pmksa->pmk; in wpa_derive_ptk_ft()
52 mpmk_len = sm->cur_pmksa->pmk_len; in wpa_derive_ptk_ft()
[all …]
H A Dpreauth.c37 void pmksa_candidate_free(struct wpa_sm *sm) in pmksa_candidate_free() argument
41 if (sm == NULL) in pmksa_candidate_free()
44 dl_list_for_each_safe(entry, n, &sm->pmksa_candidates, in pmksa_candidate_free()
65 struct wpa_sm *sm = ctx; in rsn_preauth_receive() local
70 if (sm->preauth_eapol == NULL || in rsn_preauth_receive()
71 is_zero_ether_addr(sm->preauth_bssid) || in rsn_preauth_receive()
72 !ether_addr_equal(sm->preauth_bssid, src_addr)) { in rsn_preauth_receive()
79 eapol_sm_rx_eapol(sm->preauth_eapol, src_addr, buf, len, in rsn_preauth_receive()
88 struct wpa_sm *sm = ctx; in rsn_preauth_eapol_cb() local
106 sm->pmk_len = pmk_len; in rsn_preauth_eapol_cb()
[all …]
H A Dwpa_i.h235 static inline void wpa_sm_set_state(struct wpa_sm *sm, enum wpa_states state) in wpa_sm_set_state() argument
237 WPA_ASSERT(sm->ctx->set_state); in wpa_sm_set_state()
238 sm->ctx->set_state(sm->ctx->ctx, state); in wpa_sm_set_state()
241 static inline enum wpa_states wpa_sm_get_state(struct wpa_sm *sm) in wpa_sm_get_state() argument
243 WPA_ASSERT(sm->ctx->get_state); in wpa_sm_get_state()
244 return sm->ctx->get_state(sm->ctx->ctx); in wpa_sm_get_state()
247 static inline void wpa_sm_deauthenticate(struct wpa_sm *sm, u16 reason_code) in wpa_sm_deauthenticate() argument
249 WPA_ASSERT(sm->ctx->deauthenticate); in wpa_sm_deauthenticate()
250 sm->ctx->deauthenticate(sm->ctx->ctx, reason_code); in wpa_sm_deauthenticate()
253 static inline int wpa_sm_set_key(struct wpa_sm *sm, int link_id, in wpa_sm_set_key() argument
[all …]
H A Dwpa.h184 void wpa_sm_deinit(struct wpa_sm *sm);
185 void wpa_sm_notify_assoc(struct wpa_sm *sm, const u8 *bssid);
186 void wpa_sm_notify_disassoc(struct wpa_sm *sm);
187 void wpa_sm_set_pmk(struct wpa_sm *sm, const u8 *pmk, size_t pmk_len,
189 void wpa_sm_set_pmk_from_pmksa(struct wpa_sm *sm);
190 void wpa_sm_set_fast_reauth(struct wpa_sm *sm, int fast_reauth);
191 void wpa_sm_set_scard_ctx(struct wpa_sm *sm, void *scard_ctx);
192 void wpa_sm_set_config(struct wpa_sm *sm, struct rsn_supp_config *config);
193 void wpa_sm_set_ssid(struct wpa_sm *sm, const u8 *ssid, size_t ssid_len);
194 void wpa_sm_set_own_addr(struct wpa_sm *sm, const u8 *addr);
[all …]
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_sm_state_mgr.c67 void osm_report_sm_state(osm_sm_t * sm) in osm_report_sm_state() argument
70 const char *state_str = osm_get_sm_mgr_state_str(sm->p_subn->sm_state); in osm_report_sm_state()
72 osm_log_v2(sm->p_log, OSM_LOG_SYS, FILE_ID, "Entering %s state\n", state_str); in osm_report_sm_state()
74 OSM_LOG_MSG_BOX(sm->p_log, OSM_LOG_VERBOSE, buf); in osm_report_sm_state()
77 static boolean_t sm_state_mgr_send_master_sm_info_req(osm_sm_t * sm, uint8_t sm_state) in sm_state_mgr_send_master_sm_info_req() argument
86 OSM_LOG_ENTER(sm->p_log); in sm_state_mgr_send_master_sm_info_req()
96 guid = sm->master_sm_guid; in sm_state_mgr_send_master_sm_info_req()
104 guid = sm->polling_sm_guid; in sm_state_mgr_send_master_sm_info_req()
108 if (guid == sm->p_subn->sm_port_guid) { in sm_state_mgr_send_master_sm_info_req()
109 OSM_LOG(sm->p_log, OSM_LOG_VERBOSE, in sm_state_mgr_send_master_sm_info_req()
[all …]
H A Dosm_state_mgr.c75 extern void osm_drop_mgr_process(IN osm_sm_t * sm);
78 extern int osm_mcast_mgr_process(IN osm_sm_t * sm, boolean_t config_all);
79 extern int osm_link_mgr_process(IN osm_sm_t * sm, IN uint8_t state);
80 extern void osm_guid_mgr_process(IN osm_sm_t * sm);
82 static void state_mgr_up_msg(IN const osm_sm_t * sm) in state_mgr_up_msg() argument
89 osm_log_v2(sm->p_log, sm->p_subn->first_time_master_sweep ? in state_mgr_up_msg()
92 OSM_LOG_MSG_BOX(sm->p_log, OSM_LOG_VERBOSE, in state_mgr_up_msg()
93 sm->p_subn->opt.sweep_interval ? in state_mgr_up_msg()
131 osm_sm_t *sm = context; in state_mgr_get_sw_info() local
134 OSM_LOG_ENTER(sm->p_log); in state_mgr_get_sw_info()
[all …]
H A Dosm_sminfo_rcv.c70 static boolean_t smi_rcv_remote_sm_is_higher(IN osm_sm_t * sm, in smi_rcv_remote_sm_is_higher() argument
75 sm->p_subn->opt.sm_priority, in smi_rcv_remote_sm_is_higher()
76 sm->p_subn->sm_port_guid); in smi_rcv_remote_sm_is_higher()
80 static void smi_rcv_process_get_request(IN osm_sm_t * sm, in smi_rcv_process_get_request() argument
88 OSM_LOG_ENTER(sm->p_log); in smi_rcv_process_get_request()
97 p_smi->guid = sm->p_subn->sm_port_guid; in smi_rcv_process_get_request()
98 p_smi->act_count = cl_hton32(sm->p_subn->p_osm->stats.qp0_mads_sent); in smi_rcv_process_get_request()
99 p_smi->pri_state = (uint8_t) (sm->p_subn->sm_state | in smi_rcv_process_get_request()
100 sm->p_subn->opt.sm_priority << 4); in smi_rcv_process_get_request()
101 p_smi->sm_key = fill_sm_key ? sm->p_subn->opt.sm_key : 0; in smi_rcv_process_get_request()
[all …]
H A Dosm_node_info_rcv.c68 static void report_duplicated_guid(IN osm_sm_t * sm, osm_physp_t * p_physp, in report_duplicated_guid() argument
78 OSM_LOG(sm->p_log, OSM_LOG_SYS | OSM_LOG_ERROR, "ERR 0D01: " in report_duplicated_guid()
90 osm_dump_dr_path_v2(sm->p_log, osm_physp_get_dr_path_ptr(p_physp), in report_duplicated_guid()
95 OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 0D05: " in report_duplicated_guid()
98 osm_dump_dr_path_v2(sm->p_log, &path, FILE_ID, OSM_LOG_ERROR); in report_duplicated_guid()
101 static void requery_dup_node_info(IN osm_sm_t * sm, osm_physp_t * p_physp, in requery_dup_node_info() argument
109 OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 0D0D: " in requery_dup_node_info()
116 OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 0D08: " in requery_dup_node_info()
129 status = osm_req_get(sm, &path, IB_MAD_ATTR_NODE_INFO, 0, in requery_dup_node_info()
133 OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 0D02: " in requery_dup_node_info()
[all …]
H A Dosm_drop_mgr.c69 static void drop_mgr_remove_router(osm_sm_t * sm, IN const ib_net64_t portguid) in drop_mgr_remove_router() argument
74 p_rtr_guid_tbl = &sm->p_subn->rtr_guid_tbl; in drop_mgr_remove_router()
77 OSM_LOG(sm->p_log, OSM_LOG_VERBOSE, in drop_mgr_remove_router()
84 static void drop_mgr_clean_physp(osm_sm_t * sm, IN osm_physp_t * p_physp) in drop_mgr_clean_physp() argument
91 p_remote_port = osm_get_port_by_guid(sm->p_subn, in drop_mgr_clean_physp()
105 OSM_LOG(sm->p_log, OSM_LOG_VERBOSE, in drop_mgr_clean_physp()
111 sm->p_subn->force_heavy_sweep = TRUE; in drop_mgr_clean_physp()
119 p_remote_physp->port_guid != sm->p_subn->sm_port_guid) { in drop_mgr_clean_physp()
121 OSM_LOG(sm->p_log, OSM_LOG_DEBUG, in drop_mgr_clean_physp()
130 OSM_LOG(sm->p_log, OSM_LOG_VERBOSE, in drop_mgr_clean_physp()
[all …]
H A Dosm_sw_info_rcv.c65 static void si_rcv_get_fwd_tbl(IN osm_sm_t * sm, IN osm_switch_t * p_sw)
75 OSM_LOG_ENTER(sm->p_log);
92 OSM_LOG(sm->p_log, OSM_LOG_DEBUG,
95 status = osm_req_get(sm, p_dr_path, IB_MAD_ATTR_LIN_FWD_TBL,
100 OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 3603: "
105 OSM_LOG_EXIT(sm->p_log);
111 static void si_rcv_get_mcast_fwd_tbl(IN osm_sm_t * sm, IN osm_switch_t * p_sw)
125 OSM_LOG_ENTER(sm->p_log);
134 OSM_LOG(sm->p_log, OSM_LOG_DEBUG,
147 OSM_LOG(sm->p_log, OSM_LOG_ERROR, "ERR 3609: "
[all …]
H A Dosm_mcast_mgr.c131 void osm_purge_mtree(osm_sm_t * sm, IN osm_mgrp_box_t * mbox) in osm_purge_mtree() argument
133 OSM_LOG_ENTER(sm->p_log); in osm_purge_mtree()
139 OSM_LOG_EXIT(sm->p_log); in osm_purge_mtree()
187 static float mcast_mgr_compute_avg_hops(osm_sm_t * sm, cl_qmap_t * m, in mcast_mgr_compute_avg_hops() argument
198 OSM_LOG_ENTER(sm->p_log); in mcast_mgr_compute_avg_hops()
217 OSM_LOG_EXIT(sm->p_log); in mcast_mgr_compute_avg_hops()
221 static float mcast_mgr_compute_max_hops(osm_sm_t * sm, cl_qmap_t * m, in mcast_mgr_compute_max_hops() argument
229 OSM_LOG_ENTER(sm->p_log); in mcast_mgr_compute_max_hops()
249 OSM_LOG_EXIT(sm->p_log); in mcast_mgr_compute_max_hops()
260 static osm_switch_t *mcast_mgr_find_optimal_switch(osm_sm_t * sm, in mcast_mgr_find_optimal_switch() argument
[all …]
H A Dosm_port_info_rcv.c82 static void pi_rcv_process_endport(IN osm_sm_t * sm, IN osm_physp_t * p_physp, in pi_rcv_process_endport() argument
94 OSM_LOG_ENTER(sm->p_log); in pi_rcv_process_endport()
103 if (mtu < sm->p_subn->min_ca_mtu) { in pi_rcv_process_endport()
104 OSM_LOG(sm->p_log, OSM_LOG_VERBOSE, in pi_rcv_process_endport()
107 sm->p_subn->min_ca_mtu = mtu; in pi_rcv_process_endport()
112 if (ib_path_compare_rates(rate, sm->p_subn->min_ca_rate) < 0) { in pi_rcv_process_endport()
113 OSM_LOG(sm->p_log, OSM_LOG_VERBOSE, in pi_rcv_process_endport()
116 sm->p_subn->min_ca_rate = rate; in pi_rcv_process_endport()
120 if (data_vls > 1U << (sm->p_subn->opt.max_op_vls - 1)) in pi_rcv_process_endport()
121 data_vls = 1U << (sm->p_subn->opt.max_op_vls - 1); in pi_rcv_process_endport()
[all …]
/freebsd/contrib/wpa/src/ap/
H A Dwpa_auth.c40 #define STATE_MACHINE_ADDR wpa_auth_get_spa(sm)
44 static int wpa_sm_step(struct wpa_state_machine *sm);
48 static int wpa_aead_decrypt(struct wpa_state_machine *sm, struct wpa_ptk *ptk,
50 static struct wpabuf * fils_prepare_plainbuf(struct wpa_state_machine *sm,
56 static void wpa_request_new_ptk(struct wpa_state_machine *sm);
61 static int wpa_derive_ptk(struct wpa_state_machine *sm, const u8 *snonce,
72 static int ieee80211w_kde_len(struct wpa_state_machine *sm);
73 static u8 * ieee80211w_kde_add(struct wpa_state_machine *sm, u8 *pos);
89 static const u8 * wpa_auth_get_aa(const struct wpa_state_machine *sm) in wpa_auth_get_aa() argument
92 if (sm->mld_assoc_link_id >= 0) in wpa_auth_get_aa()
[all …]
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dspace_map.c86 space_map_iterate(space_map_t *sm, uint64_t end, sm_cb_t callback, void *arg) in space_map_iterate() argument
88 uint64_t blksz = sm->sm_blksz; in space_map_iterate()
91 ASSERT3U(end, <=, space_map_length(sm)); in space_map_iterate()
94 dmu_prefetch(sm->sm_os, space_map_object(sm), 0, 0, end, in space_map_iterate()
102 error = dmu_buf_hold(sm->sm_os, space_map_object(sm), in space_map_iterate()
166 uint64_t entry_offset = (raw_offset << sm->sm_shift) + in space_map_iterate()
167 sm->sm_start; in space_map_iterate()
168 uint64_t entry_run = raw_run << sm->sm_shift; in space_map_iterate()
170 VERIFY0(P2PHASE(entry_offset, 1ULL << sm->sm_shift)); in space_map_iterate()
171 VERIFY0(P2PHASE(entry_run, 1ULL << sm->sm_shift)); in space_map_iterate()
[all …]
/freebsd/contrib/bc/tests/dc/errors/
H A D10.txt2 0sm[Nx]0sm[]zsWx[li]zsGx[Nfvfff[]zsm[]zsWx[li]zsPx[Nx]0sm[]zsdc
3 0sm[Nx]0sm[]x[li]zsGx[Nx]0sm[]zsdc
4 0sm[Nx]0sm[]zsWx[li]zsGx[Nx]0sm[]zsdc
5 0sm[Nx]0sm[]zsWx[li]zsGx[Nx]0sm[]zsW#! /bin/dc
6 0sm[Nx]0s_[]zsWx[li]zs^x[lili100>Nx]0sm[]zsWx[liNx]zsxx[li;rlilix]
8 0sm[Nx]0sm[]zsWx[li]zsPx[Nxx]0sm[]x[li]zsGx[Nx]0sm[]zsdc
9 0sm[Nx]0sm[]zsWx[li]zsGx[Nx]0sm[]zsW#!sdc
10 0sm[Nx]0sm[]zsWx[li]zsGx[Nx]0sm[]zsW#! /bin/dc
11 0sm[Nx]0s_@]zsWx[li]zs^x[lili100>Nx]0sm[]zsWx[liNx]zsxx[li;rlilix]
13 0sm[Nx]0sm[]zsWx[li]zsPx[Nx]0sm[]zsdc
[all …]
/freebsd/contrib/wpa/src/wps/
H A Dwps_upnp.c306 static int local_network_addr(struct upnp_wps_device_sm *sm, in local_network_addr() argument
309 return (addr->sin_addr.s_addr & sm->netmask.s_addr) == in local_network_addr()
310 (sm->ip_addr & sm->netmask.s_addr); in local_network_addr()
406 if (!local_network_addr(s->sm, addr)) { in subscr_addr_add_url()
481 static void upnp_wps_device_send_event(struct upnp_wps_device_sm *sm) in upnp_wps_device_send_event() argument
494 if (dl_list_empty(&sm->subscriptions)) { in upnp_wps_device_send_event()
500 if (now.sec != sm->last_event_sec) { in upnp_wps_device_send_event()
501 sm->last_event_sec = now.sec; in upnp_wps_device_send_event()
502 sm->num_events_in_sec = 1; in upnp_wps_device_send_event()
504 sm->num_events_in_sec++; in upnp_wps_device_send_event()
[all …]

12345678910>>...13