Searched refs:auth_type (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-10.1-release/contrib/tcpdump/
H A Dprint-vrrp.c90 int version, type, auth_type; local
105 auth_type = bp[4];
106 printf(", authtype %s", tok2str(auth2str, NULL, auth_type));
134 if (auth_type == VRRP_AUTH_SIMPLE) { /* simple text password */
H A Dprint-rip.c135 u_int16_t auth_type = EXTRACT_16BITS(&ni->rip_tag); local
136 if (auth_type == 2) {
142 } else if (auth_type == 3) {
150 } else if (auth_type == 1) {
H A Dprint-bfd.c99 u_int8_t auth_type; member in struct:bfd_auth_header_t
258 tok2str(bfd_v1_authentication_values,"Unknown",bfd_auth_header->auth_type),
259 bfd_auth_header->auth_type,
/freebsd-10.1-release/contrib/wpa/src/wps/
H A Dwps_attr_process.c122 const u8 *auth_type)
124 if (auth_type == NULL) {
130 cred->auth_type = WPA_GET_BE16(auth_type);
132 cred->auth_type);
174 if (cred->auth_type == WPS_AUTH_OPEN &&
276 if (cred->auth_type & (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK) &&
308 wps_process_cred_auth_type(cred, attr->auth_type) ||
334 wps_process_cred_auth_type(cred, attr->auth_type) ||
121 wps_process_cred_auth_type(struct wps_credential *cred, const u8 *auth_type) argument
H A Dwps_enrollee.c255 u16 auth_type = wps->wps->auth_types; local
258 if (auth_type & WPS_AUTH_WPA2PSK)
259 auth_type = WPS_AUTH_WPA2PSK;
260 else if (auth_type & WPS_AUTH_WPAPSK)
261 auth_type = WPS_AUTH_WPAPSK;
262 else if (auth_type & WPS_AUTH_OPEN)
263 auth_type = WPS_AUTH_OPEN;
264 else if (auth_type & WPS_AUTH_SHARED)
265 auth_type = WPS_AUTH_SHARED;
267 wpa_printf(MSG_DEBUG, "WPS: * Authentication Type (0x%x)", auth_type);
[all...]
H A Dwps_attr_parse.h45 const u8 *auth_type; /* 2 octets */ member in struct:wps_parse_attr
H A Dwps_registrar.c1487 cred->auth_type);
1490 wpabuf_put_be16(msg, cred->auth_type);
1584 if (wps->auth_type & WPS_AUTH_WPA2PSK)
1585 wps->auth_type = WPS_AUTH_WPA2PSK;
1586 else if (wps->auth_type & WPS_AUTH_WPAPSK)
1587 wps->auth_type = WPS_AUTH_WPAPSK;
1588 else if (wps->auth_type & WPS_AUTH_OPEN)
1589 wps->auth_type = WPS_AUTH_OPEN;
1590 else if (wps->auth_type & WPS_AUTH_SHARED)
1591 wps->auth_type
[all...]
H A Dwps_i.h86 * auth_type - Available authentication types
88 u16 auth_type; member in struct:wps_data
H A Dwps_validate.c1041 wps_validate_auth_type(attr.auth_type, 1) ||
1740 wps_validate_auth_type(attr.auth_type, !ap) ||
1812 wps_validate_auth_type(attr.auth_type, ap) ||
H A Dwps.h36 * @auth_type: Authentication Type (WPS_AUTH_OPEN, .. flags)
50 u16 auth_type; member in struct:wps_credential
H A Dwps_attr_parse.c379 attr->auth_type = pos;
H A Dwps_common.c341 data.auth_type = wps->auth_types;
/freebsd-10.1-release/contrib/wpa/wpa_supplicant/
H A Dsme.h17 const u8 *bssid, u16 auth_type);
H A Dwps_supplicant.c205 u16 auth_type; local
234 cred->auth_type);
242 auth_type = cred->auth_type;
243 if (auth_type == (WPS_AUTH_WPAPSK | WPS_AUTH_WPA2PSK)) {
245 "auth_type into WPA2PSK");
246 auth_type = WPS_AUTH_WPA2PSK;
249 if (auth_type != WPS_AUTH_OPEN &&
250 auth_type != WPS_AUTH_SHARED &&
251 auth_type !
[all...]
H A Dsme.c481 " auth_type=%d auth_transaction=%d status_code=%d",
482 MAC2STR(data->auth.peer), data->auth.auth_type,
490 if (data->auth.auth_type == WLAN_AUTH_SAE) {
511 wpa_s->sme.auth_alg == data->auth.auth_type ||
518 switch (data->auth.auth_type) {
541 if (data->auth.auth_type == WLAN_AUTH_FT) {
552 data->auth.auth_type);
557 const u8 *bssid, u16 auth_type)
586 if (auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
556 sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode, const u8 *bssid, u16 auth_type) argument
/freebsd-10.1-release/sbin/routed/rtquery/
H A Drtquery.c116 int auth_type = RIP_AUTH_NONE; variable
253 auth_type = RIP_AUTH_PW;
255 auth_type = RIP_AUTH_MD5;
261 if (auth_type == RIP_AUTH_MD5
387 if (auth_type == RIP_AUTH_PW) {
394 } else if (auth_type == RIP_AUTH_MD5) {
/freebsd-10.1-release/contrib/wpa/src/ap/
H A Dwps_hostapd.c299 cred->auth_type);
327 hapd->wps->auth_types = cred->auth_type;
387 if ((cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK)) &&
388 (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK)))
390 else if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA2PSK))
392 else if (cred->auth_type & (WPS_AUTH_WPA | WPS_AUTH_WPAPSK))
403 if (cred->auth_type & (WPS_AUTH_WPA2 | WPS_AUTH_WPA)) {
407 if (cred->auth_type & (WPS_AUTH_WPA2PSK | WPS_AUTH_WPAPSK))
440 if ((cred->auth_type & WPS_AUTH_OPEN) &&
441 (cred->auth_type
[all...]
H A Ddrv_callbacks.c462 if (rx_auth->auth_type == WLAN_AUTH_FT && hapd->wpa_auth) {
/freebsd-10.1-release/contrib/sendmail/cf/cf/
H A Dsubmit.cf565 $.$?{auth_type}(authenticated$?{auth_ssf} bits=${auth_ssf}$.)
1114 R$* $: $1 $| $>"Local_Relay_Auth" $&{auth_type}
1117 R$* $| $* $: $1 $| $&{auth_type}
1177 R$* $: $&{auth_type} $| $1
1190 ### $1: ${auth_type}
/freebsd-10.1-release/contrib/wpa/wpa_supplicant/dbus/
H A Ddbus_new.c712 char *auth_type[6]; /* we have six possible authorization types */ local
733 if (cred->auth_type & WPS_AUTH_OPEN)
734 auth_type[at_num++] = "open";
735 if (cred->auth_type & WPS_AUTH_WPAPSK)
736 auth_type[at_num++] = "wpa-psk";
737 if (cred->auth_type & WPS_AUTH_SHARED)
738 auth_type[at_num++] = "shared";
739 if (cred->auth_type & WPS_AUTH_WPA)
740 auth_type[at_num++] = "wpa-eap";
741 if (cred->auth_type
[all...]
/freebsd-10.1-release/contrib/wpa/src/eap_peer/
H A Deap_wsc.c88 cred->auth_type = WPS_AUTH_OPEN;
90 cred->auth_type = WPS_AUTH_WPAPSK;
92 cred->auth_type = WPS_AUTH_WPA2PSK;
/freebsd-10.1-release/contrib/wpa/hostapd/
H A Dconfig_file.c2768 u8 auth_type; local
2770 if (hexstr2bin(pos, &auth_type, 1)) {
2777 if (auth_type == 0 || auth_type == 2)
2788 *bss->network_auth_type = auth_type;
/freebsd-10.1-release/contrib/sendmail/src/
H A Dsrvrsmtp.c613 char *volatile auth_type; local
866 auth_type = NULL;
1347 macid("{auth_type}"), auth_type);
1439 auth_type, *ssf);
1478 auth_type,
1758 auth_type = newstr(p);
/freebsd-10.1-release/contrib/wpa/src/drivers/
H A Ddriver.h3302 u16 auth_type; member in struct:wpa_event_data::auth_info
/freebsd-10.1-release/sys/netinet/
H A Dsctp_uio.h439 uint16_t auth_type; member in struct:sctp_authkey_event

Completed in 391 milliseconds

12