| /components/dfs/dfs_v1/filesystems/nfs/rpc/ |
| A D | auth.h | 82 #define AUTH_NEXTVERF(auth) \ argument 83 ((*((auth)->ah_ops->ah_nextverf))(auth)) 85 ((*((auth)->ah_ops->ah_nextverf))(auth)) 88 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs)) 90 ((*((auth)->ah_ops->ah_marshal))(auth, xdrs)) 93 ((*((auth)->ah_ops->ah_validate))((auth), verfp)) 95 ((*((auth)->ah_ops->ah_validate))((auth), verfp)) 98 ((*((auth)->ah_ops->ah_refresh))(auth)) 100 ((*((auth)->ah_ops->ah_refresh))(auth)) 103 ((*((auth)->ah_ops->ah_destroy))(auth)) [all …]
|
| /components/dfs/dfs_v1/filesystems/nfs/ |
| A D | nfs_auth.c | 65 struct opaque_auth auth; in authnone_create() local 124 memset(&auth, 0, sizeof(auth)); in authnone_create() 125 auth.oa_flavor = 1; in authnone_create() 126 auth.oa_base = (char *)auth_base; in authnone_create() 127 auth.oa_length = (auth_buf - auth_base) * sizeof(rt_uint32_t); in authnone_create() 128 ap->no_client.ah_cred = auth; in authnone_create()
|
| /components/net/lwip/lwip-1.4.1/src/netif/ppp/ |
| A D | auth.c | 445 int auth; in link_established() local 477 auth = 0; in link_established() 481 auth |= CHAP_PEER; in link_established() 490 auth |= PAP_PEER; in link_established() 496 auth |= CHAP_WITHPEER; in link_established() 511 auth |= PAP_WITHPEER; in link_established() 514 auth_pending[unit] = auth; in link_established() 516 if (!auth) { in link_established()
|
| /components/net/lwip/lwip-2.0.3/src/netif/ppp/ |
| A D | auth.c | 736 int auth; in link_established() local 806 auth = 0; in link_established() 811 auth |= EAP_PEER; in link_established() 817 auth |= CHAP_PEER; in link_established() 823 auth |= PAP_PEER; in link_established() 832 auth |= EAP_WITHPEER; in link_established() 838 auth |= CHAP_WITHPEER; in link_established() 844 auth |= PAP_WITHPEER; in link_established() 849 pcb->auth_pending = auth; in link_established() 852 if (!auth) in link_established()
|
| /components/net/lwip/lwip-2.1.2/src/netif/ppp/ |
| A D | auth.c | 736 int auth; in link_established() local 806 auth = 0; in link_established() 811 auth |= EAP_PEER; in link_established() 817 auth |= CHAP_PEER; in link_established() 823 auth |= PAP_PEER; in link_established() 832 auth |= EAP_WITHPEER; in link_established() 838 auth |= CHAP_WITHPEER; in link_established() 844 auth |= PAP_WITHPEER; in link_established() 849 pcb->auth_pending = auth; in link_established() 852 if (!auth) in link_established()
|
| /components/net/lwip/lwip-2.1.2/src/apps/smtp/ |
| A D | smtp.c | 1057 u16_t auth = pbuf_strstr(s->p, SMTP_KEYWORD_AUTH_SP); in smtp_prepare_auth_or_mail() local 1058 if (auth == 0xFFFF) { in smtp_prepare_auth_or_mail() 1059 auth = pbuf_strstr(s->p, SMTP_KEYWORD_AUTH_EQ); in smtp_prepare_auth_or_mail() 1061 if (auth != 0xFFFF) { in smtp_prepare_auth_or_mail() 1062 u16_t crlf = pbuf_memfind(s->p, SMTP_CRLF, SMTP_CRLF_LEN, auth); in smtp_prepare_auth_or_mail() 1063 if ((crlf != 0xFFFF) && (crlf > auth)) { in smtp_prepare_auth_or_mail() 1065 u16_t copied = pbuf_copy_partial(s->p, s->tx_buf, (u16_t)(crlf - auth), auth); in smtp_prepare_auth_or_mail()
|
| /components/drivers/usb/cherryusb/class/vendor/wifi/ |
| A D | usbh_bl616.c | 23 static const char *auth_to_str(uint8_t auth) in auth_to_str() argument 36 if (auth < RNM_WIFI_AUTH_MAX) in auth_to_str() 37 return table[auth]; in auth_to_str()
|
| /components/net/lwip/lwip-1.4.1/ |
| A D | SConscript | 50 src/netif/ppp/auth.c
|
| A D | CHANGELOG | 1828 * ppp_oe.c ppp_oe.h, auth.c chap.c fsm.c lcp.c ppp.c ppp.h,
|
| /components/net/lwip/lwip-2.1.2/src/apps/snmp/ |
| A D | snmp_msg.c | 774 snmpv3_auth_algo_t auth; in snmp_parse_inbound_frame() local 963 if (snmpv3_get_user((char *)request->msg_user_name, &auth, NULL, &priv, NULL)) { in snmp_parse_inbound_frame() 973 if ((auth != SNMP_V3_AUTH_ALGO_INVAL) || (priv != SNMP_V3_PRIV_ALGO_INVAL)) { in snmp_parse_inbound_frame() 983 if ((auth == SNMP_V3_AUTH_ALGO_INVAL) || (priv != SNMP_V3_PRIV_ALGO_INVAL)) { in snmp_parse_inbound_frame() 992 if ((auth == SNMP_V3_AUTH_ALGO_INVAL) || (priv == SNMP_V3_PRIV_ALGO_INVAL)) { in snmp_parse_inbound_frame() 1032 IF_PARSE_EXEC(snmpv3_get_user((char *)request->msg_user_name, &auth, key, NULL, NULL)); in snmp_parse_inbound_frame() 1033 IF_PARSE_EXEC(snmpv3_auth(&auth_stream, request->inbound_pbuf->tot_len, key, auth, hmac)); in snmp_parse_inbound_frame()
|
| /components/net/lwip/lwip-2.0.3/src/ |
| A D | Filelists.mk | 88 PPPFILES=$(LWIPDIR)/netif/ppp/auth.c \
|
| /components/net/lwip/lwip-2.1.2/src/ |
| A D | Filelists.mk | 97 PPPFILES=$(LWIPDIR)/netif/ppp/auth.c \
|
| A D | Filelists.cmake | 109 ${LWIP_DIR}/src/netif/ppp/auth.c
|
| /components/net/lwip/lwip-2.1.2/ |
| A D | SConscript | 110 src/netif/ppp/auth.c
|
| A D | CHANGELOG | 3037 * ppp_oe.c ppp_oe.h, auth.c chap.c fsm.c lcp.c ppp.c ppp.h,
|
| /components/net/lwip/lwip-2.0.3/doc/ |
| A D | ppp.txt | 26 Supported auth protocols:
|
| /components/net/lwip/lwip-2.1.2/doc/ |
| A D | ppp.txt | 26 Supported auth protocols:
|
| /components/net/lwip/lwip-2.0.3/ |
| A D | CHANGELOG | 2784 * ppp_oe.c ppp_oe.h, auth.c chap.c fsm.c lcp.c ppp.c ppp.h,
|