| /lib/lwip/lwip/src/include/lwip/ |
| A D | altcp.h | 74 altcp_accept_fn accept; member 97 void altcp_accept(struct altcp_pcb *conn, altcp_accept_fn accept);
|
| A D | tcp.h | 231 tcp_accept_fn accept; member 419 void tcp_accept (struct tcp_pcb *pcb, tcp_accept_fn accept);
|
| A D | sockets.h | 553 #define lwip_accept accept 633 #define accept(s,addr,addrlen) lwip_accept(s,addr,addrlen) macro
|
| /lib/mbedtls/external/mbedtls/programs/test/ |
| A D | udp_proxy.c | 834 accept: in main() 922 goto accept; in main() 928 goto accept; in main() 935 goto accept; in main()
|
| /lib/lwip/lwip/src/core/ |
| A D | altcp.c | 225 altcp_accept(struct altcp_pcb *conn, altcp_accept_fn accept) in altcp_accept() argument 228 conn->accept = accept; in altcp_accept()
|
| A D | altcp_tcp.c | 78 if (new_tpcb && listen_conn && listen_conn->accept) { in altcp_tcp_accept() 85 return listen_conn->accept(listen_conn->arg, new_conn, err); in altcp_tcp_accept()
|
| A D | tcp.c | 912 lpcb->accept = tcp_accept_null; in tcp_listen_with_backlog_and_err() 2086 tcp_accept(struct tcp_pcb *pcb, tcp_accept_fn accept) in tcp_accept() argument 2091 lpcb->accept = accept; in tcp_accept()
|
| /lib/ |
| A D | string.c | 391 size_t strspn(const char *s, const char *accept) in strspn() argument 398 for (a = accept; *a != '\0'; ++a) { in strspn()
|
| /lib/lwip/lwip/contrib/apps/LwipMibCompiler/Mibs/ |
| A D | UDP-MIB | 204 1) An application that is willing to accept both IPv4 210 2) An application that is willing to accept only IPv4 296 1. For an application that is willing to accept both 302 2. For an application that is willing to accept only IPv4 454 case of a UDP listener that is willing to accept
|
| A D | TCP-MIB | 453 1. An application that is willing to accept both IPv4 and 462 2. An application that is willing to accept only IPv4 or 525 1. For an application willing to accept both IPv4 and 531 2. For an application willing to accept only IPv4 or 656 accept connections for any IP interface associated with the
|
| /lib/lwip/lwip/src/include/lwip/priv/ |
| A D | tcp_priv.h | 186 if((lpcb)->accept != NULL) \ 187 (ret) = (lpcb)->accept((arg),(pcb),(err)); \
|
| /lib/mbedtls/external/mbedtls/ |
| A D | CONTRIBUTING.md | 3 We gratefully accept bug reports and contributions from the community. All PRs are reviewed by the … 89 Contributors must accept that their contributions are made under both the Apache-2.0 AND [GPL-2.0-o…
|
| A D | README.md | 111 …et rid of its default content (for example because your compiler doesn't accept `-Wall` as an opti… 326 We gratefully accept bug reports and contributions from the community. Please see the [contributing…
|
| A D | LICENSE | 394 5. You are not required to accept this License, since you have not 397 prohibited by law if you do not accept this License. Therefore, by
|
| A D | ChangeLog | 491 * Fix the J-PAKE driver interface for user and peer to accept any values 845 properly negotiate/accept hashes based on their availability in PSA. 1172 accept any curve that it supported, even if that curve was not allowed 1395 PSA_ALG_RSA_PSS_ANY_SALT to accept any salt length. Fixes #4946. 2039 mbedtls_cipher_auth_decrypt() no longer accept NIST_KW contexts, 3711 renegotiated handshakes would only accept signatures using SHA-1 4259 accept PEM data from an untrusted source. 5660 * Allowed X509 key usage parsing to accept 4 byte values instead of the 5702 * mpi_init() and mpi_free() now only accept a single MPI 5703 argument and do not accept variable argument lists anymore. [all …]
|
| /lib/mbedtls/external/mbedtls/library/ |
| A D | net_sockets.c | 345 ret = client_ctx->fd = (int) accept(bind_ctx->fd, in mbedtls_net_accept()
|
| /lib/lwip/lwip/src/apps/altcp_tls/ |
| A D | altcp_tls_mbedtls.c | 157 if (listen_conn && listen_conn->state && listen_conn->accept) { in altcp_mbedtls_lower_accept() 170 return listen_conn->accept(listen_conn->arg, new_conn, err); in altcp_mbedtls_lower_accept()
|
| /lib/mbedtls/external/mbedtls/docs/architecture/psa-migration/ |
| A D | strategy.md | 306 convenient, for example in parts of the code that accept old-style identifiers 470 2. APIs the accept list of identifiers: for example 472 could be changed to accept a list of pairs (`psa_ecc_family_t`, size) but we
|
| /lib/mbedtls/external/mbedtls/docs/ |
| A D | 3.0-migration-guide.md | 448 All the functions in the RSA module that accept a `hashlen` parameter used to 460 The signature functions in the PK module no longer accept 0 as the `hash_len` parameter. The `hash_… 477 ### The RNG parameter is now mandatory for all functions that accept one 489 functions that accept a `f_rng` parameter. It is of course still possible to 1022 If you still need to accept certificates signed with algorithms that have been removed from the def…
|
| /lib/lwip/lwip/src/netif/ppp/ |
| A D | PPPD_FOLLOWUP | 34 2010-03-06 - Document +ipv6 and ipv6cp-accept-local
|
| /lib/mbedtls/external/mbedtls/tests/suites/ |
| A D | test_suite_x509parse.function | 1297 void mbedtls_x509_csr_parse_with_ext_cb(data_t *csr_der, char *ref_out, int ref_ret, int accept) 1309 accept ? parse_csr_ext_accept_cb :
|
| A D | test_suite_asn1parse.function | 232 * some trailing garbage. This may be UNPREDICTABLE_RESULT to accept
|
| /lib/lwip/lwip/ |
| A D | UPGRADING | 176 * LWIP_SO_RCVTIMEO: when accept() or recv() time out, they
|
| A D | CHANGELOG | 254 * netconn: added nonblocking accept/recv to netconn API (task #14396) 526 * tcp: call accept-callback with ERR_MEM when allocating a pcb fails on 528 ATTENTION: applications have to handle NULL pcb in accept callback! 874 * tcp: changed accept handling to be done internally: the application does not 1548 accept() on UDP connections 2681 by moving accept callback function pointer to TCP_PCB_COMMON 2855 applications have to call 'tcp_accepted(pcb)' in their accept callback to 3215 * api_lib.c: Implement SO_RCVTIMEO for accept and recv on TCP 3556 * igmp.c: Fix bug #20595 to accept IGMPv3 "Query" messages. 4057 in accept() by Kevin Lawson. [all …]
|
| /lib/lwip/lwip/contrib/apps/LwipMibCompiler/SharpSnmpLib/ |
| A D | license.txt | 357 9. You are not required to accept this License, since you have not 360 prohibited by law if you do not accept this License. Therefore, by
|