/openssl/ssl/quic/ |
H A D | quic_cfq.c | 23 uint32_t priority, pn_space, flags; member 91 if (a->priority > b->priority) in compare() 93 else if (a->priority < b->priority) in compare() 231 uint32_t priority, in ossl_quic_cfq_add_frame() argument 245 item->priority = priority; in ossl_quic_cfq_add_frame() 279 uint32_t priority) in ossl_quic_cfq_mark_lost() argument 290 if (priority != UINT32_MAX && priority != ex->priority) { in ossl_quic_cfq_mark_lost() 292 ex->priority = priority; in ossl_quic_cfq_mark_lost() 297 if (priority != UINT32_MAX) in ossl_quic_cfq_mark_lost() 298 ex->priority = priority; in ossl_quic_cfq_mark_lost()
|
/openssl/crypto/bio/ |
H A D | bss_log.c | 86 static void xsyslog(BIO *bp, int priority, const char *string); 131 int priority, i; in slg_write() local 210 priority = mapping[i].log_level; in slg_write() 213 xsyslog(b, priority, pp); in slg_write() 251 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 260 switch (priority) { in xsyslog() 307 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 334 switch (priority) { in xsyslog() 400 static void xsyslog(BIO *bp, int priority, const char *string) in xsyslog() argument 402 syslog(priority, "%s", string); in xsyslog()
|
/openssl/ssl/ |
H A D | pqueue.c | 25 memcpy(item->priority, prio64be, sizeof(item->priority)); in pitem_new() 62 int cmp = memcmp(next->priority, item->priority, 8); in pqueue_insert() 108 if (memcmp(next->priority, prio64be, 8) == 0) { in pqueue_find() 115 if (memcmp(next->priority, prio64be, 8) == 0) in pqueue_find()
|
H A D | ssl_local.h | 1903 unsigned char priority[8]; /* 64-bit value in big-endian encoding */ member
|
/openssl/doc/internal/man3/ |
H A D | DEFINE_PRIORITY_QUEUE_OF.pod | 11 - priority queue container 38 Create a type safe priority queue container. These macros define typesafe 42 The PRIORITY_QUEUE_OF() macro returns the name for a priority queue 47 priority queue of B<I<TYPE>> elements. The type is represented by 54 B<ossl_pqueue_I<TYPE>_new>() allocates a new priority queue using 73 into the priority queue I<pq>. If not NULL, the function returns an index 81 in I<pq> and removes that element from the priority queue. 93 priority queue or B<0> if the passed priority queue is NULL. 95 B<ossl_pqueue_I<TYPE>_new>() returns an empty priority queue or NULL if 107 the data from the smallest element in the priority queue.
|
/openssl/crypto/ |
H A D | ex_data.c | 154 int priority) in ossl_crypto_get_ex_new_index_ex() argument 189 a->priority = priority; in ossl_crypto_get_ex_new_index_ex() 358 if (ap->excb->priority == bp->excb->priority) in ex_callback_compare() 360 return ap->excb->priority > bp->excb->priority ? -1 : 1; in ex_callback_compare()
|
/openssl/include/internal/ |
H A D | quic_cfq.h | 103 uint32_t priority, 123 uint32_t priority);
|
H A D | cryptlib.h | 70 int priority; /* Priority ordering for freeing */ member 144 int priority);
|
/openssl/doc/designs/quic-design/ |
H A D | quic-fifm.md | 124 - An integral priority value, used to maintain priority ordering. 136 Frames in the `NEW` state participate in a priority queue (the NEW queue) 137 according to their priority and the CFQ's NEW queue can be iterated in priority 208 * priority determines the relative ordering of control frames in a packet. 225 uint32_t priority, 240 * allowing the frame to be retransmitted. If priority is not UINT32_MAX, 241 * the priority is changed to the given value. 244 uint32_t priority); 258 * Gets the highest priority CFQ item in the given PN space awaiting 267 * Returns NULL if the given item is the last item in priority order. [all …]
|
H A D | tx-packetiser.md | 62 As per [RFC 9000 2.3 Stream Prioritization], streams should contain a priority 69 void SSL_set_priority(SSL *stream, uint32_t priority); 73 For protocols where priority is not meaningful, the set function is a noop and 334 ordering below. Items without a line between them have the same priority. 410 frames. It is therefore trivially given the highest priority. 463 priority. 466 are small and are given a high priority. 482 priority than `NEW_TOKEN`. 486 to be transmitted. Thus `ACK` frames are given a fairly high priority; 487 specifically, their priority is higher than all frames which have the [all …]
|
/openssl/doc/man3/ |
H A D | SSL_get_ciphers.pod | 25 const char *SSL_get_cipher_list(const SSL *ssl, int priority); 62 listed for B<ssl> with B<priority>. If B<ssl> is NULL, no ciphers are 63 available, or there are less ciphers than B<priority> available, NULL 85 Call SSL_get_cipher_list() with B<priority> starting from 0 to obtain the
|
/openssl/ssl/record/methods/ |
H A D | dtls_meth.c | 282 unsigned char *priority) in dtls_rlayer_buffer_record() argument 292 item = pitem_new(priority, rdata); in dtls_rlayer_buffer_record()
|
/openssl/ |
H A D | CHANGES.md | 10628 in order with respect to each other, but also have higher priority
|