/Zephyr-latest/samples/bluetooth/peripheral_accept_list/ |
D | README.rst | 2 :name: Peripheral Accept List 5 Advertise and accept connections only from devices on an accept list. 10 This application demonstrates the Bluetooth LE advertising accept filter list feature. 13 accepted if the central device is on the accept list. Additionally, scan response 14 data will only be sent to devices that are on the accept list. As a result, some 16 in the scan results if the central device is not on the accept list.
|
D | sample.yaml | 2 name: Bluetooh Peripheral Accept List
|
D | prj.conf | 12 CONFIG_BT_DEVICE_NAME="Accept list"
|
/Zephyr-latest/tests/modules/thrift/ThriftTest/ |
D | overlay-tls.conf | 12 # tcp socket (accept): 1 13 # tls socket (accept): 1 16 # socketpairs for cancellation (accept, client, server): 6
|
/Zephyr-latest/tests/bluetooth/l2cap/src/ |
D | main.c | 24 .accept = l2cap_accept, 28 .accept = l2cap_accept, 33 .accept = l2cap_accept, 38 .accept = l2cap_accept,
|
/Zephyr-latest/include/zephyr/drivers/interrupt_controller/ |
D | intc_esp32c3.h | 19 #define ESP_INTR_FLAG_LEVEL1 (1<<1) /* Accept a Level 1 int vector, lowest priority */ 20 #define ESP_INTR_FLAG_LEVEL2 (1<<2) /* Accept a Level 2 int vector */ 21 #define ESP_INTR_FLAG_LEVEL3 (1<<3) /* Accept a Level 3 int vector */ 22 #define ESP_INTR_FLAG_LEVEL4 (1<<4) /* Accept a Level 4 int vector */ 23 #define ESP_INTR_FLAG_LEVEL5 (1<<5) /* Accept a Level 5 int vector */ 24 #define ESP_INTR_FLAG_LEVEL6 (1<<6) /* Accept a Level 6 int vector */ 25 #define ESP_INTR_FLAG_NMI (1<<7) /* Accept a Level 7 int vector, highest priority */
|
D | intc_esp32.h | 23 #define ESP_INTR_FLAG_LEVEL1 (1<<1) /* Accept a Level 1 int vector, lowest priority */ 24 #define ESP_INTR_FLAG_LEVEL2 (1<<2) /* Accept a Level 2 int vector */ 25 #define ESP_INTR_FLAG_LEVEL3 (1<<3) /* Accept a Level 3 int vector */ 26 #define ESP_INTR_FLAG_LEVEL4 (1<<4) /* Accept a Level 4 int vector */ 27 #define ESP_INTR_FLAG_LEVEL5 (1<<5) /* Accept a Level 5 int vector */ 28 #define ESP_INTR_FLAG_LEVEL6 (1<<6) /* Accept a Level 6 int vector */ 29 #define ESP_INTR_FLAG_NMI (1<<7) /* Accept a Level 7 int vector, highest priority */
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/classic/ |
D | a2dp.rst | 84 receive requesting config and accept 88 receive requesting establishment and accept 91 receive requesting start and accept 97 receive requesting suspend and accept 100 receive requesting release and accept
|
/Zephyr-latest/subsys/net/lib/http/ |
D | http_server_ws.c | 40 "Sec-WebSocket-Accept: "; in handle_http1_to_websocket_upgrade() 42 char accept[20]; in handle_http1_to_websocket_upgrade() local 55 mbedtls_sha1(key_accept, olen + key_len, accept); in handle_http1_to_websocket_upgrade() 57 ret = base64_encode(tmp, sizeof(tmp) - 1, &olen, accept, sizeof(accept)); in handle_http1_to_websocket_upgrade()
|
/Zephyr-latest/lib/libc/minimal/source/string/ |
D | strspn.c | 11 const char *accept) in strspn() argument 15 while ((*s != '\0') && (strchr(accept, *s) != NULL)) { in strspn()
|
/Zephyr-latest/subsys/bluetooth/host/classic/ |
D | sco_internal.h | 72 /** @brief SCO Accept Info Structure */ 90 /** @brief Server accept callback 95 * @param info The SCO accept information structure 100 int (*accept)(const struct bt_sco_accept_info *info, member 106 * Register SCO server, each new connection is authorized using the accept()
|
D | l2cap_br_interface.h | 13 int (*accept)(struct bt_conn *conn, struct bt_l2cap_chan **chan); member 19 .accept = _accept, \
|
/Zephyr-latest/tests/net/socket/socketpair/src/ |
D | unsupported_calls.c | 39 "accept should fail on a socketpair endpoint"); in ZTEST_USER_F() 41 "accept should set errno to EOPNOTSUPP"); in ZTEST_USER_F()
|
/Zephyr-latest/doc/connectivity/bluetooth/shell/audio/ |
D | ccp.rst | 51 accept :Accept a call [<{instance_index, gtbs}>] <id> 143 uart:~$ tbs_client accept 0 5 144 <dbg> bt_tbs_client.call_cp_callback_handler: Status: success for the accept opcode for call 0x05 182 accept :Accept call <call_index> 238 …<dbg> bt_tbs.write_call_cp: Index 0: Processed the accept opcode with status success for call inde…
|
/Zephyr-latest/subsys/net/lib/websocket/ |
D | websocket_internal.h | 59 * peer sent proper Sec-WebSocket-Accept key. 114 /** Did we receive Sec-WebSocket-Accept: field */ 117 /** Is Sec-WebSocket-Accept field correct */
|
/Zephyr-latest/drivers/espi/ |
D | Kconfig.it8xxx2 | 141 With this option enabled, EC will accept 0x81 I/O cycle from the Host. 142 This allows EC to accept 2 bytes of port 80 data written from the Host.
|
/Zephyr-latest/samples/net/sockets/dumb_http_server/src/ |
D | socket_dumb_http.c | 43 /* If accept returns an error, then we are probably running 86 int client = accept(serv, (struct sockaddr *)&client_addr, in main() 89 printf("Error in accept: %d - continuing\n", errno); in main()
|
/Zephyr-latest/samples/bluetooth/peripheral_accept_list/src/ |
D | main.c | 107 printk("Added %s to advertising accept filter list\n", addr_str); in add_bonded_addr_to_filter_list() 128 /* BT_LE_ADV_OPT_FILTER_CONN is required to activate accept filter list, in bt_ready() 130 * devices, that are not on the accept filter list in bt_ready()
|
/Zephyr-latest/tests/bluetooth/audio/mocks/src/ |
D | iso.c | 46 zassert_not_null(server->accept, "server->accept is NULL"); in bt_iso_server_register() 102 err = iso_server->accept(&info, chan); in mock_bt_iso_accept()
|
/Zephyr-latest/subsys/net/ip/ |
D | Kconfig.ipv4 | 73 bool "Accept broadcast ICMPv4 echo-request" 79 bool "Accept 0.0.0.0 broadcast destination address" 81 If set, then accept UDP packets destined to non-standard
|
/Zephyr-latest/include/zephyr/bluetooth/classic/ |
D | rfcomm.h | 115 /** Server accept callback 125 int (*accept)(struct bt_conn *conn, struct bt_rfcomm_dlc **dlc); member 133 * using the accept() callback which in case of success shall allocate the dlc
|
/Zephyr-latest/tests/bsim/bluetooth/host/privacy/device/ |
D | README.rst | 11 * In device privacy mode, a scanner shall accept advertising packets from peers with any address
|
/Zephyr-latest/doc/connectivity/networking/api/ |
D | net_pkt_filter.rst | 28 Packet outcome is either ``NET_OK`` to accept the packet or ``NET_DROP`` to 70 The above would accept IP packets that are 200 bytes or smaller, and drop
|
/Zephyr-latest/samples/net/sockets/echo/src/ |
D | socket_echo.c | 78 int client = accept(serv, (struct sockaddr *)&client_addr, in main() 82 printf("error: accept: %d\n", errno); in main()
|
/Zephyr-latest/drivers/can/ |
D | Kconfig | 80 bool "Accept Remote Transmission Requests (RTR) frames" 82 Accept incoming Remote Transmission Request (RTR) frames matching CAN RX filters. Unless
|