comparison src/event/quic/ngx_event_quic_socket.c @ 9015:a2fbae359828 quic

QUIC: fixed indentation.
author Sergey Kandaurov <pluknet@nginx.com>
date Wed, 16 Feb 2022 15:45:47 +0300
parents fab36e4abf83
children c2f5d79cde64
comparison
equal deleted inserted replaced
9014:8d11e2171697 9015:a2fbae359828
36 ngx_queue_init(&qc->free_client_ids); 36 ngx_queue_init(&qc->free_client_ids);
37 37
38 qc->tp.original_dcid.len = pkt->odcid.len; 38 qc->tp.original_dcid.len = pkt->odcid.len;
39 qc->tp.original_dcid.data = ngx_pstrdup(c->pool, &pkt->odcid); 39 qc->tp.original_dcid.data = ngx_pstrdup(c->pool, &pkt->odcid);
40 if (qc->tp.original_dcid.data == NULL) { 40 if (qc->tp.original_dcid.data == NULL) {
41 return NGX_ERROR; 41 return NGX_ERROR;
42 } 42 }
43 43
44 /* socket to use for further processing (id auto-generated) */ 44 /* socket to use for further processing (id auto-generated) */
45 qsock = ngx_quic_create_socket(c, qc); 45 qsock = ngx_quic_create_socket(c, qc);
46 if (qsock == NULL) { 46 if (qsock == NULL) {