comparison auto/modules @ 8269:7df607cb2d11 quic

QUIC: ngx_quic_bpf module. The quic kernel bpf helper inspects packet payload for DCID, extracts key and routes the packet into socket matching the key. Due to reuseport feature, each worker owns a personal socket, which is identified by the same key, used to create DCID. BPF objects are locked in RAM and are subject to RLIMIT_MEMLOCK. The "ulimit -l" command may be used to setup proper limits, if maps cannot be created with EPERM or updated with ETOOLONG.
author Vladimir Homutov <vl@nginx.com>
date Fri, 25 Dec 2020 15:01:15 +0300
parents 2c7f927f7999
children 05e0988a6898
comparison
equal deleted inserted replaced
8268:d3747ba486e7 8269:7df607cb2d11
1343 ngx_module_libs= 1343 ngx_module_libs=
1344 ngx_module_link=YES 1344 ngx_module_link=YES
1345 ngx_module_order= 1345 ngx_module_order=
1346 1346
1347 . auto/module 1347 . auto/module
1348
1349 if [ $NGX_QUIC_BPF$BPF_FOUND$SO_COOKIE_FOUND = YESYESYES ]; then
1350 ngx_module_type=CORE
1351 ngx_module_name=ngx_quic_bpf_module
1352 ngx_module_incs=
1353 ngx_module_deps=
1354 ngx_module_srcs="src/event/quic/ngx_event_quic_bpf.c \
1355 src/event/quic/ngx_event_quic_bpf_code.c"
1356 ngx_module_libs=
1357 ngx_module_link=YES
1358 ngx_module_order=
1359
1360 . auto/module
1361
1362 have=NGX_QUIC_BPF . auto/have
1363 fi
1348 fi 1364 fi
1349 1365
1350 1366
1351 if [ $USE_PCRE = YES ]; then 1367 if [ $USE_PCRE = YES ]; then
1352 ngx_module_type=CORE 1368 ngx_module_type=CORE