Lines Matching full:ids

4 The connection ID cache is responsible for managing connection IDs, both local
7 Remote Connection IDs
10 For remote connection IDs, we need to be able to:
12 * add new IDs per connection;
14 * select a connection ID by sequence number and retire that and all older IDs.
18 and must maintain a count of the number of connection IDs present.
19 There is no requirement to maintain a global mapping since remote IDs
22 In MVP, a many-to-1 matching of Connection IDs per Connection object
28 Local Connection IDs
31 For local connection IDs, we need to be able to:
36 * drop all connection IDs associated with a QUIC_CONNECTION;
37 * select a connection ID by sequence number and retire that and all older IDs
39 * select a connection ID by sequence number and drop that and all older IDs.
41 All connection IDs issued by our stack must be the same length because
43 connection IDs of this length will be allocated. Note that no additional
46 There will be one global set of local connection IDs, `QUIC_ROUTE_TABLE`,
64 A pair of connection IDs identify a route between the two ends of the
65 communication. This contains the connection IDs of both ends of the
68 * select a connection ID by sequence number and retire that and all older IDs
70 * select a connection ID by sequence number and drop that and all older IDs.
72 It is likely that operations on local and remote connection IDs can be
78 Connection IDs are retired by either a [NEW_CONNECTION_ID] or
83 IDs covered from our cache and then send back an acknowledgement of
87 IDs covered in our cache as _retired_. This means that we cannot send
88 using any of these IDs but can still receive using them. Once our peer
89 acknowledges the retirement, we can _remove_ the IDs.
100 QUIC connection IDs are defined in #18949 but some extra functions
150 * Each connection can have multiple connection IDs associated with different
158 * Retire remote connection IDs up to and including the one determined by the
165 * Remove remote connection IDs up to and including the one determined by the
192 * Remove a local connection and all associated cached IDs
206 * Retire local connection IDs up to and including the one specified by the
213 * Remove local connection IDs up to and including the one specified by the