comparison src/event/ngx_event_quic.c @ 7718:c955b7eaa2d9 quic

Removed unused variable.
author Vladimir Homutov <vl@nginx.com>
date Fri, 20 Mar 2020 20:39:41 +0300
parents c217a907ce42
children 80d7144b1c38
comparison
equal deleted inserted replaced
7717:c217a907ce42 7718:c955b7eaa2d9
633 633
634 634
635 static ngx_int_t 635 static ngx_int_t
636 ngx_quic_handshake_input(ngx_connection_t *c, ngx_quic_header_t *pkt) 636 ngx_quic_handshake_input(ngx_connection_t *c, ngx_quic_header_t *pkt)
637 { 637 {
638 ngx_ssl_conn_t *ssl_conn;
639 ngx_quic_connection_t *qc; 638 ngx_quic_connection_t *qc;
640 639
641 qc = c->quic; 640 qc = c->quic;
642 ssl_conn = c->ssl->connection;
643 641
644 /* extract cleartext data into pkt */ 642 /* extract cleartext data into pkt */
645 if (ngx_quic_parse_long_header(pkt) != NGX_OK) { 643 if (ngx_quic_parse_long_header(pkt) != NGX_OK) {
646 return NGX_ERROR; 644 return NGX_ERROR;
647 } 645 }