| /src/sys/netbt/ |
| l2cap_lower.c | 119 hdr.dcid = le16toh(hdr.dcid); 127 if (hdr.dcid == L2CAP_SIGNAL_CID) { 132 if (hdr.dcid == L2CAP_CLT_CID) { 137 chan = l2cap_cid_lookup(hdr.dcid); 146 device_xname(link->hl_unit->hci_dev), hdr.dcid, hdr.length);
|
| l2cap_signal.c | 365 cp.dcid = le16toh(cp.dcid); 392 chan->lc_rcid = cp.dcid; 439 cp.dcid = le16toh(cp.dcid); 442 chan = l2cap_cid_lookup(cp.dcid); 448 L2CAP_NULL_CID, cp.dcid); 683 rp.dcid = htole16(cp.scid); 861 * Process Received Disconnect Request. We must validate scid and dcid 879 cp.dcid = le16toh(cp.dcid) [all...] |
| l2cap.h | 224 uint16_t dcid; /* destination channel ID */ member in struct:__anon7405 227 /* L2CAP ConnectionLess Traffic (dcid == L2CAP_CLT_CID) */ 235 /* L2CAP Command header (dcid == L2CAP_SIGNAL_CID) */ 259 uint16_t dcid; /* destination channel ID */ member in struct:__anon7410 268 uint16_t dcid; /* destination channel ID */ member in struct:__anon7411 300 uint16_t dcid; /* destination channel ID */ member in struct:__anon7415
|
| l2cap_upper.c | 419 hdr->dcid = htole16(chan->lc_rcid);
|
| /src/external/bsd/unbound/dist/services/ |
| listen_dnsport.h | 490 * addresses, and can be found by dcid. */ 569 /** the doq connection dcid */ 570 uint8_t* dcid; member in struct:doq_conn_key 571 /** length of dcid */ 581 /** rbtree node, key is addresses and dcid */ 585 /** the key information, with dcid and address endpoint */ 647 * has an original dcid, and then more connection ids associated. 704 * @param dcid: the dcid, Destination Connection ID. 705 * @param dcidlen: length of dcid [all...] |
| listen_dnsport.c | 3553 const uint8_t* dcid, size_t dcidlen, uint32_t version) 3567 conn->key.dcid = memdup((void*)dcid, dcidlen); 3568 if(!conn->key.dcid) { 3641 free(conn->key.dcid); 3658 * local address, ifindex and then dcid. 3691 if((r=memcmp(c->key.dcid, d->key.dcid, c->key.dcidlen))!=0) 3821 memmove(repinfo->doq_dcid, key->dcid, key->dcidlen); 3835 key->dcid = repinfo->doq_dcid 4796 struct ngtcp2_cid dcid, sv_scid, scid_cid; local [all...] |
| /src/external/bsd/unbound/dist/util/ |
| netevent.c | 1607 /** send the version negotiation for doq. scid and dcid are flipped around 1611 const uint8_t* dcid, size_t dcidlen, const uint8_t* scid, 1627 dcid, dcidlen, scid, scidlen, versions, versions_len); 1638 /** Find the doq_conn object by remote address and dcid */ 1642 socklen_t localaddrlen, int ifindex, const uint8_t* dcid, 1654 key.key.dcid = (void*)dcid; 1664 doq_conn_find_by_id(struct doq_table* table, const uint8_t* dcid, 1669 conid = doq_conid_find(table, dcid, dcidlen); 1676 memcpy(cid, conid->key.dcid, conid->key.dcidlen) [all...] |
| /src/external/bsd/unbound/dist/testcode/ |
| doqclient.c | 1075 struct ngtcp2_cid dcid, scid; 1085 memset(&dcid, 0, sizeof(dcid)); 1113 cid_randfill(&dcid, 16, data->rnd); 1136 rv = ngtcp2_conn_client_new(&conn, &dcid, &scid, &path,
|