comparison src/event/quic/ngx_event_quic_transport.h @ 8898:cab3b7a070ef quic

QUIC: removed dead code. The function is no longer used since b3d9e57d0f62.
author Vladimir Homutov <vl@nginx.com>
date Wed, 10 Nov 2021 13:49:01 +0300
parents de7b9af30fc6
children fc8980f01477
comparison
equal deleted inserted replaced
8897:1d7bf9778328 8898:cab3b7a070ef
88 #define NGX_QUIC_FT_HANDSHAKE_DONE 0x1E 88 #define NGX_QUIC_FT_HANDSHAKE_DONE 0x1E
89 89
90 #define NGX_QUIC_FT_LAST NGX_QUIC_FT_HANDSHAKE_DONE 90 #define NGX_QUIC_FT_LAST NGX_QUIC_FT_HANDSHAKE_DONE
91 91
92 /* 22.5. QUIC Transport Error Codes Registry */ 92 /* 22.5. QUIC Transport Error Codes Registry */
93 /* Keep in sync with ngx_quic_errors[] */
94 #define NGX_QUIC_ERR_NO_ERROR 0x00 93 #define NGX_QUIC_ERR_NO_ERROR 0x00
95 #define NGX_QUIC_ERR_INTERNAL_ERROR 0x01 94 #define NGX_QUIC_ERR_INTERNAL_ERROR 0x01
96 #define NGX_QUIC_ERR_CONNECTION_REFUSED 0x02 95 #define NGX_QUIC_ERR_CONNECTION_REFUSED 0x02
97 #define NGX_QUIC_ERR_FLOW_CONTROL_ERROR 0x03 96 #define NGX_QUIC_ERR_FLOW_CONTROL_ERROR 0x03
98 #define NGX_QUIC_ERR_STREAM_LIMIT_ERROR 0x04 97 #define NGX_QUIC_ERR_STREAM_LIMIT_ERROR 0x04
107 #define NGX_QUIC_ERR_CRYPTO_BUFFER_EXCEEDED 0x0D 106 #define NGX_QUIC_ERR_CRYPTO_BUFFER_EXCEEDED 0x0D
108 #define NGX_QUIC_ERR_KEY_UPDATE_ERROR 0x0E 107 #define NGX_QUIC_ERR_KEY_UPDATE_ERROR 0x0E
109 #define NGX_QUIC_ERR_AEAD_LIMIT_REACHED 0x0F 108 #define NGX_QUIC_ERR_AEAD_LIMIT_REACHED 0x0F
110 #define NGX_QUIC_ERR_NO_VIABLE_PATH 0x10 109 #define NGX_QUIC_ERR_NO_VIABLE_PATH 0x10
111 110
112 #define NGX_QUIC_ERR_LAST 0x11
113 #define NGX_QUIC_ERR_CRYPTO_ERROR 0x100 111 #define NGX_QUIC_ERR_CRYPTO_ERROR 0x100
114 112
115 #define NGX_QUIC_ERR_CRYPTO(e) (NGX_QUIC_ERR_CRYPTO_ERROR + (e)) 113 #define NGX_QUIC_ERR_CRYPTO(e) (NGX_QUIC_ERR_CRYPTO_ERROR + (e))
116 114
117 115