├── .github └── workflows │ ├── Delete_Old_Workflow_Runs.yml │ ├── ipk.yml │ ├── op.yml │ └── toolchain.yml ├── README.md ├── files ├── etc │ ├── firewall4.user │ ├── opkg.conf │ ├── opkg │ │ └── distfeeds.conf │ ├── passwd │ ├── profile.d │ │ └── 30-sysinfo.sh │ ├── sysctl.d │ │ └── 15-fq-tcp.conf │ └── uci-defaults │ │ ├── dhcp-lan │ │ └── gen-mac-address └── root │ └── 1.sh ├── patch ├── Config-kernel.in ├── firewall4 │ ├── 100-openwrt-firewall4-add-custom-nft-command-support.patch │ ├── firewall4_patches │ │ ├── 001-fix-fw4-flow-offload.patch │ │ ├── 002-fix-fw4.uc-adept-kernel-version-type-of-x.x.patch │ │ ├── 990-unconditionally-allow-ct-status-dnat.patch │ │ ├── 999-01-firewall4-add-fullcone-support.patch │ │ ├── 999-02-firewall4-add-bcm-fullconenat-support.patch │ │ └── README.md │ ├── libnftnl │ │ ├── 0001-libnftnl-add-fullcone-expression-support.patch │ │ └── 0002-libnftnl-add-brcm-fullcone-support.patch │ ├── luci-24.10 │ │ ├── 0001-luci-app-firewall-add-nft-fullcone-and-bcm-fullcone-.patch │ │ ├── 0002-luci-app-firewall-add-shortcut-fe-option.patch │ │ ├── 0003-luci-app-firewall-add-ipv6-nat-option.patch │ │ ├── 0004-luci-add-firewall-add-custom-nft-rule-support.patch │ │ ├── 0005-luci-app-firewall-add-natflow-offload-support.patch │ │ ├── 0006-luci-app-firewall-enable-hardware-offload-only-on-de.patch │ │ └── 0007-luci-app-firewall-add-fullcone6-option-for-nftables-.patch │ └── nftables │ │ ├── 0001-nftables-add-fullcone-expression-support.patch │ │ ├── 0002-nftables-add-brcm-fullconenat-support.patch │ │ └── 0003-drop-rej-file.patch ├── iproute2 │ ├── 900-ss-output-TCP-BBRv3-diag-information.patch │ ├── 901-ip-introduce-the-ecn_low-per-route-feature.patch │ └── 902-ss-display-ecn_low-if-tcp_info-tcpi_options-TCPI_OPT.patch ├── kernel-6.12 │ ├── bbr3 │ │ ├── 010-bbr3-0001-net-tcp_bbr-broaden-app-limited-rate-sample-detectio.patch │ │ ├── 010-bbr3-0002-net-tcp_bbr-v2-shrink-delivered_mstamp-first_tx_msta.patch │ │ ├── 010-bbr3-0003-net-tcp_bbr-v2-snapshot-packets-in-flight-at-transmi.patch │ │ ├── 010-bbr3-0004-net-tcp_bbr-v2-count-packets-lost-over-TCP-rate-samp.patch │ │ ├── 010-bbr3-0005-net-tcp_bbr-v2-export-FLAG_ECE-in-rate_sample.is_ece.patch │ │ ├── 010-bbr3-0006-net-tcp_bbr-v2-introduce-ca_ops-skb_marked_lost-CC-m.patch │ │ ├── 010-bbr3-0007-net-tcp_bbr-v2-adjust-skb-tx.in_flight-upon-merge-in.patch │ │ ├── 010-bbr3-0008-net-tcp_bbr-v2-adjust-skb-tx.in_flight-upon-split-in.patch │ │ ├── 010-bbr3-0009-net-tcp-add-new-ca-opts-flag-TCP_CONG_WANTS_CE_EVENT.patch │ │ ├── 010-bbr3-0010-net-tcp-re-generalize-TSO-sizing-in-TCP-CC-module-AP.patch │ │ ├── 010-bbr3-0011-net-tcp-add-fast_ack_mode-1-skip-rwin-check-in-tcp_f.patch │ │ ├── 010-bbr3-0012-net-tcp_bbr-v2-record-app-limited-status-of-TLP-repa.patch │ │ ├── 010-bbr3-0013-net-tcp_bbr-v2-inform-CC-module-of-losses-repaired-b.patch │ │ ├── 010-bbr3-0014-net-tcp_bbr-v2-introduce-is_acking_tlp_retrans_seq-i.patch │ │ ├── 010-bbr3-0015-tcp-introduce-per-route-feature-RTAX_FEATURE_ECN_LOW.patch │ │ ├── 010-bbr3-0016-net-tcp_bbr-v3-update-TCP-bbr-congestion-control-mod.patch │ │ ├── 010-bbr3-0017-net-tcp_bbr-v3-ensure-ECN-enabled-BBR-flows-set-ECT-.patch │ │ ├── 010-bbr3-0018-tcp-export-TCPI_OPT_ECN_LOW-in-tcp_info-tcpi_options.patch │ │ ├── 010-bbr3-0019-x86-cfi-bpf-Add-tso_segs-and-skb_marked_lost-to-bpf_.patch │ │ └── 010-bbr3-0020-net-tcp_bbr-v3-silence-Wconstant-logical-operand.patch │ ├── btf │ │ └── 990-btf-silence-btf-module-warning-messages.patch │ └── modules │ │ ├── block.mk │ │ ├── can.mk │ │ ├── crypto.mk │ │ ├── firewire.mk │ │ ├── fs.mk │ │ ├── gpio.mk │ │ ├── hwmon.mk │ │ ├── i2c.mk │ │ ├── iio.mk │ │ ├── input.mk │ │ ├── leds.mk │ │ ├── lib.mk │ │ ├── multiplexer.mk │ │ ├── netdevices.mk │ │ ├── netfilter.mk │ │ ├── netsupport.mk │ │ ├── nls.mk │ │ ├── other.mk │ │ ├── pcmcia.mk │ │ ├── rtc.mk │ │ ├── sound.mk │ │ ├── spi.mk │ │ ├── usb.mk │ │ ├── video.mk │ │ ├── virt.mk │ │ ├── w1.mk │ │ └── wpan.mk ├── luci │ ├── 0001-luci-mod-system-add-modal-overlay-dialog-to-reboot.patch │ ├── 0002-luci-mod-status-displays-actual-process-memory-usage.patch │ ├── 0003-luci-mod-status-storage-index-applicable-only-to-val.patch │ ├── 0004-luci-mod-status-firewall-disable-legacy-firewall-rul.patch │ ├── 0005-luci-mod-system-add-refresh-interval-setting.patch │ ├── 0006-luci-mod-system-mounts-add-docker-directory-mount-po.patch │ ├── 0007-luci-mod-system-add-ucitrack-luci-mod-system-zram.js.patch │ └── 0008-luci-mod-network-add-option-for-ipv6-max-plt-vlt.patch ├── nginx │ ├── luci.locations │ └── uci.conf.template └── openssl │ └── quic │ ├── 0001-QUIC-Add-support-for-BoringSSL-QUIC-APIs.patch │ ├── 0002-QUIC-New-method-to-get-QUIC-secret-length.patch │ ├── 0003-QUIC-Make-temp-secret-names-less-confusing.patch │ ├── 0004-QUIC-Move-QUIC-transport-params-to-encrypted-extensi.patch │ ├── 0005-QUIC-Use-proper-secrets-for-handshake.patch │ ├── 0006-QUIC-Handle-partial-handshake-messages.patch │ ├── 0007-QUIC-Fix-quic_transport-constructors-parsers.patch │ ├── 0008-QUIC-Reset-init-state-in-SSL_process_quic_post_hands.patch │ ├── 0009-QUIC-Don-t-process-an-incomplete-message.patch │ ├── 0010-QUIC-Quick-fix-s2c-to-c2s-for-early-secret.patch │ ├── 0011-QUIC-Add-client-early-traffic-secret-storage.patch │ ├── 0012-QUIC-Add-OPENSSL_NO_QUIC-wrapper.patch │ ├── 0013-QUIC-Correctly-disable-middlebox-compat.patch │ ├── 0014-QUIC-Move-QUIC-code-out-of-tls13_change_cipher_state.patch │ ├── 0015-QUIC-Tweeks-to-quic_change_cipher_state.patch │ ├── 0016-QUIC-Add-support-for-more-secrets.patch │ ├── 0017-QUIC-Fix-resumption-secret.patch │ ├── 0018-QUIC-Handle-EndOfEarlyData-and-MaxEarlyData.patch │ ├── 0019-QUIC-Fall-through-for-0RTT.patch │ ├── 0020-QUIC-Some-cleanup-for-the-main-QUIC-changes.patch │ ├── 0021-QUIC-Prevent-KeyUpdate-for-QUIC.patch │ ├── 0022-QUIC-Test-KeyUpdate-rejection.patch │ ├── 0023-QUIC-Buffer-all-provided-quic-data.patch │ ├── 0024-QUIC-Enforce-consistent-encryption-level-for-handsha.patch │ ├── 0025-QUIC-add-v1-quic_transport_parameters.patch │ ├── 0026-QUIC-return-success-when-no-post-handshake-data.patch │ ├── 0027-QUIC-__owur-makes-no-sense-for-void-return-values.patch │ ├── 0028-QUIC-remove-SSL_R_BAD_DATA_LENGTH-unused.patch │ ├── 0029-QUIC-SSLerr-ERR_raise-ERR_LIB_SSL.patch │ ├── 0030-QUIC-Add-compile-run-time-checking-for-QUIC.patch │ ├── 0031-QUIC-Add-early-data-support.patch │ ├── 0032-QUIC-Make-SSL_provide_quic_data-accept-0-length-data.patch │ ├── 0033-QUIC-Process-multiple-post-handshake-messages-in-a-s.patch │ ├── 0034-QUIC-Fix-CI.patch │ ├── 0035-QUIC-Break-up-header-body-processing.patch │ ├── 0036-QUIC-Don-t-muck-with-FIPS-checksums.patch │ ├── 0037-QUIC-Update-RFC-references.patch │ ├── 0038-QUIC-revert-white-space-change.patch │ ├── 0039-QUIC-use-SSL_IS_QUIC-in-more-places.patch │ ├── 0040-QUIC-Error-when-non-empty-session_id-in-CH.patch │ ├── 0041-QUIC-Update-SSL_clear-to-clear-quic-data.patch │ ├── 0042-QUIC-Better-SSL_clear.patch │ ├── 0043-QUIC-Fix-extension-test.patch │ ├── 0044-QUIC-Update-metadata-version.patch │ ├── 901-Revert-speed-Pass-IV-to-EVP_CipherInit_ex-for-evp-ru.patch │ └── 902-Revert-apps-speed.c-Fix-the-benchmarking-for-AEAD-ci.patch ├── sh └── op.sh └── tags └── kernel-6.12 /.github/workflows/Delete_Old_Workflow_Runs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/.github/workflows/Delete_Old_Workflow_Runs.yml -------------------------------------------------------------------------------- /.github/workflows/ipk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/.github/workflows/ipk.yml -------------------------------------------------------------------------------- /.github/workflows/op.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/.github/workflows/op.yml -------------------------------------------------------------------------------- /.github/workflows/toolchain.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/.github/workflows/toolchain.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/README.md -------------------------------------------------------------------------------- /files/etc/firewall4.user: -------------------------------------------------------------------------------- 1 | # 自定义规则 2 | 3 | -------------------------------------------------------------------------------- /files/etc/opkg.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/etc/opkg.conf -------------------------------------------------------------------------------- /files/etc/opkg/distfeeds.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/etc/opkg/distfeeds.conf -------------------------------------------------------------------------------- /files/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/etc/passwd -------------------------------------------------------------------------------- /files/etc/profile.d/30-sysinfo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/etc/profile.d/30-sysinfo.sh -------------------------------------------------------------------------------- /files/etc/sysctl.d/15-fq-tcp.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/etc/sysctl.d/15-fq-tcp.conf -------------------------------------------------------------------------------- /files/etc/uci-defaults/dhcp-lan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/etc/uci-defaults/dhcp-lan -------------------------------------------------------------------------------- /files/etc/uci-defaults/gen-mac-address: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/etc/uci-defaults/gen-mac-address -------------------------------------------------------------------------------- /files/root/1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/files/root/1.sh -------------------------------------------------------------------------------- /patch/Config-kernel.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/Config-kernel.in -------------------------------------------------------------------------------- /patch/firewall4/100-openwrt-firewall4-add-custom-nft-command-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/100-openwrt-firewall4-add-custom-nft-command-support.patch -------------------------------------------------------------------------------- /patch/firewall4/firewall4_patches/001-fix-fw4-flow-offload.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/firewall4_patches/001-fix-fw4-flow-offload.patch -------------------------------------------------------------------------------- /patch/firewall4/firewall4_patches/002-fix-fw4.uc-adept-kernel-version-type-of-x.x.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/firewall4_patches/002-fix-fw4.uc-adept-kernel-version-type-of-x.x.patch -------------------------------------------------------------------------------- /patch/firewall4/firewall4_patches/990-unconditionally-allow-ct-status-dnat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/firewall4_patches/990-unconditionally-allow-ct-status-dnat.patch -------------------------------------------------------------------------------- /patch/firewall4/firewall4_patches/999-01-firewall4-add-fullcone-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/firewall4_patches/999-01-firewall4-add-fullcone-support.patch -------------------------------------------------------------------------------- /patch/firewall4/firewall4_patches/999-02-firewall4-add-bcm-fullconenat-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/firewall4_patches/999-02-firewall4-add-bcm-fullconenat-support.patch -------------------------------------------------------------------------------- /patch/firewall4/firewall4_patches/README.md: -------------------------------------------------------------------------------- 1 | ### Patches for `package/network/config/firewall4` -------------------------------------------------------------------------------- /patch/firewall4/libnftnl/0001-libnftnl-add-fullcone-expression-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/libnftnl/0001-libnftnl-add-fullcone-expression-support.patch -------------------------------------------------------------------------------- /patch/firewall4/libnftnl/0002-libnftnl-add-brcm-fullcone-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/libnftnl/0002-libnftnl-add-brcm-fullcone-support.patch -------------------------------------------------------------------------------- /patch/firewall4/luci-24.10/0001-luci-app-firewall-add-nft-fullcone-and-bcm-fullcone-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/luci-24.10/0001-luci-app-firewall-add-nft-fullcone-and-bcm-fullcone-.patch -------------------------------------------------------------------------------- /patch/firewall4/luci-24.10/0002-luci-app-firewall-add-shortcut-fe-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/luci-24.10/0002-luci-app-firewall-add-shortcut-fe-option.patch -------------------------------------------------------------------------------- /patch/firewall4/luci-24.10/0003-luci-app-firewall-add-ipv6-nat-option.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/luci-24.10/0003-luci-app-firewall-add-ipv6-nat-option.patch -------------------------------------------------------------------------------- /patch/firewall4/luci-24.10/0004-luci-add-firewall-add-custom-nft-rule-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/luci-24.10/0004-luci-add-firewall-add-custom-nft-rule-support.patch -------------------------------------------------------------------------------- /patch/firewall4/luci-24.10/0005-luci-app-firewall-add-natflow-offload-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/luci-24.10/0005-luci-app-firewall-add-natflow-offload-support.patch -------------------------------------------------------------------------------- /patch/firewall4/luci-24.10/0006-luci-app-firewall-enable-hardware-offload-only-on-de.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/luci-24.10/0006-luci-app-firewall-enable-hardware-offload-only-on-de.patch -------------------------------------------------------------------------------- /patch/firewall4/luci-24.10/0007-luci-app-firewall-add-fullcone6-option-for-nftables-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/luci-24.10/0007-luci-app-firewall-add-fullcone6-option-for-nftables-.patch -------------------------------------------------------------------------------- /patch/firewall4/nftables/0001-nftables-add-fullcone-expression-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/nftables/0001-nftables-add-fullcone-expression-support.patch -------------------------------------------------------------------------------- /patch/firewall4/nftables/0002-nftables-add-brcm-fullconenat-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/nftables/0002-nftables-add-brcm-fullconenat-support.patch -------------------------------------------------------------------------------- /patch/firewall4/nftables/0003-drop-rej-file.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/firewall4/nftables/0003-drop-rej-file.patch -------------------------------------------------------------------------------- /patch/iproute2/900-ss-output-TCP-BBRv3-diag-information.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/iproute2/900-ss-output-TCP-BBRv3-diag-information.patch -------------------------------------------------------------------------------- /patch/iproute2/901-ip-introduce-the-ecn_low-per-route-feature.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/iproute2/901-ip-introduce-the-ecn_low-per-route-feature.patch -------------------------------------------------------------------------------- /patch/iproute2/902-ss-display-ecn_low-if-tcp_info-tcpi_options-TCPI_OPT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/iproute2/902-ss-display-ecn_low-if-tcp_info-tcpi_options-TCPI_OPT.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0001-net-tcp_bbr-broaden-app-limited-rate-sample-detectio.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0001-net-tcp_bbr-broaden-app-limited-rate-sample-detectio.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0002-net-tcp_bbr-v2-shrink-delivered_mstamp-first_tx_msta.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0002-net-tcp_bbr-v2-shrink-delivered_mstamp-first_tx_msta.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0003-net-tcp_bbr-v2-snapshot-packets-in-flight-at-transmi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0003-net-tcp_bbr-v2-snapshot-packets-in-flight-at-transmi.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0004-net-tcp_bbr-v2-count-packets-lost-over-TCP-rate-samp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0004-net-tcp_bbr-v2-count-packets-lost-over-TCP-rate-samp.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0005-net-tcp_bbr-v2-export-FLAG_ECE-in-rate_sample.is_ece.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0005-net-tcp_bbr-v2-export-FLAG_ECE-in-rate_sample.is_ece.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0006-net-tcp_bbr-v2-introduce-ca_ops-skb_marked_lost-CC-m.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0006-net-tcp_bbr-v2-introduce-ca_ops-skb_marked_lost-CC-m.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0007-net-tcp_bbr-v2-adjust-skb-tx.in_flight-upon-merge-in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0007-net-tcp_bbr-v2-adjust-skb-tx.in_flight-upon-merge-in.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0008-net-tcp_bbr-v2-adjust-skb-tx.in_flight-upon-split-in.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0008-net-tcp_bbr-v2-adjust-skb-tx.in_flight-upon-split-in.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0009-net-tcp-add-new-ca-opts-flag-TCP_CONG_WANTS_CE_EVENT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0009-net-tcp-add-new-ca-opts-flag-TCP_CONG_WANTS_CE_EVENT.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0010-net-tcp-re-generalize-TSO-sizing-in-TCP-CC-module-AP.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0010-net-tcp-re-generalize-TSO-sizing-in-TCP-CC-module-AP.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0011-net-tcp-add-fast_ack_mode-1-skip-rwin-check-in-tcp_f.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0011-net-tcp-add-fast_ack_mode-1-skip-rwin-check-in-tcp_f.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0012-net-tcp_bbr-v2-record-app-limited-status-of-TLP-repa.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0012-net-tcp_bbr-v2-record-app-limited-status-of-TLP-repa.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0013-net-tcp_bbr-v2-inform-CC-module-of-losses-repaired-b.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0013-net-tcp_bbr-v2-inform-CC-module-of-losses-repaired-b.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0014-net-tcp_bbr-v2-introduce-is_acking_tlp_retrans_seq-i.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0014-net-tcp_bbr-v2-introduce-is_acking_tlp_retrans_seq-i.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0015-tcp-introduce-per-route-feature-RTAX_FEATURE_ECN_LOW.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0015-tcp-introduce-per-route-feature-RTAX_FEATURE_ECN_LOW.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0016-net-tcp_bbr-v3-update-TCP-bbr-congestion-control-mod.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0016-net-tcp_bbr-v3-update-TCP-bbr-congestion-control-mod.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0017-net-tcp_bbr-v3-ensure-ECN-enabled-BBR-flows-set-ECT-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0017-net-tcp_bbr-v3-ensure-ECN-enabled-BBR-flows-set-ECT-.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0018-tcp-export-TCPI_OPT_ECN_LOW-in-tcp_info-tcpi_options.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0018-tcp-export-TCPI_OPT_ECN_LOW-in-tcp_info-tcpi_options.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0019-x86-cfi-bpf-Add-tso_segs-and-skb_marked_lost-to-bpf_.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0019-x86-cfi-bpf-Add-tso_segs-and-skb_marked_lost-to-bpf_.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/bbr3/010-bbr3-0020-net-tcp_bbr-v3-silence-Wconstant-logical-operand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/bbr3/010-bbr3-0020-net-tcp_bbr-v3-silence-Wconstant-logical-operand.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/btf/990-btf-silence-btf-module-warning-messages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/btf/990-btf-silence-btf-module-warning-messages.patch -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/block.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/block.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/can.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/can.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/crypto.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/crypto.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/firewire.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/firewire.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/fs.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/fs.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/gpio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/gpio.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/hwmon.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/hwmon.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/i2c.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/i2c.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/iio.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/iio.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/input.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/input.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/leds.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/leds.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/lib.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/lib.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/multiplexer.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/multiplexer.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/netdevices.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/netdevices.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/netfilter.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/netfilter.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/netsupport.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/netsupport.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/nls.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/nls.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/other.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/other.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/pcmcia.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/pcmcia.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/rtc.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/rtc.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/sound.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/sound.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/spi.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/spi.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/usb.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/usb.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/video.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/video.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/virt.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/virt.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/w1.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/w1.mk -------------------------------------------------------------------------------- /patch/kernel-6.12/modules/wpan.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/kernel-6.12/modules/wpan.mk -------------------------------------------------------------------------------- /patch/luci/0001-luci-mod-system-add-modal-overlay-dialog-to-reboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0001-luci-mod-system-add-modal-overlay-dialog-to-reboot.patch -------------------------------------------------------------------------------- /patch/luci/0002-luci-mod-status-displays-actual-process-memory-usage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0002-luci-mod-status-displays-actual-process-memory-usage.patch -------------------------------------------------------------------------------- /patch/luci/0003-luci-mod-status-storage-index-applicable-only-to-val.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0003-luci-mod-status-storage-index-applicable-only-to-val.patch -------------------------------------------------------------------------------- /patch/luci/0004-luci-mod-status-firewall-disable-legacy-firewall-rul.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0004-luci-mod-status-firewall-disable-legacy-firewall-rul.patch -------------------------------------------------------------------------------- /patch/luci/0005-luci-mod-system-add-refresh-interval-setting.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0005-luci-mod-system-add-refresh-interval-setting.patch -------------------------------------------------------------------------------- /patch/luci/0006-luci-mod-system-mounts-add-docker-directory-mount-po.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0006-luci-mod-system-mounts-add-docker-directory-mount-po.patch -------------------------------------------------------------------------------- /patch/luci/0007-luci-mod-system-add-ucitrack-luci-mod-system-zram.js.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0007-luci-mod-system-add-ucitrack-luci-mod-system-zram.js.patch -------------------------------------------------------------------------------- /patch/luci/0008-luci-mod-network-add-option-for-ipv6-max-plt-vlt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/luci/0008-luci-mod-network-add-option-for-ipv6-max-plt-vlt.patch -------------------------------------------------------------------------------- /patch/nginx/luci.locations: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/nginx/luci.locations -------------------------------------------------------------------------------- /patch/nginx/uci.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/nginx/uci.conf.template -------------------------------------------------------------------------------- /patch/openssl/quic/0001-QUIC-Add-support-for-BoringSSL-QUIC-APIs.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0001-QUIC-Add-support-for-BoringSSL-QUIC-APIs.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0002-QUIC-New-method-to-get-QUIC-secret-length.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0002-QUIC-New-method-to-get-QUIC-secret-length.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0003-QUIC-Make-temp-secret-names-less-confusing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0003-QUIC-Make-temp-secret-names-less-confusing.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0004-QUIC-Move-QUIC-transport-params-to-encrypted-extensi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0004-QUIC-Move-QUIC-transport-params-to-encrypted-extensi.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0005-QUIC-Use-proper-secrets-for-handshake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0005-QUIC-Use-proper-secrets-for-handshake.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0006-QUIC-Handle-partial-handshake-messages.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0006-QUIC-Handle-partial-handshake-messages.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0007-QUIC-Fix-quic_transport-constructors-parsers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0007-QUIC-Fix-quic_transport-constructors-parsers.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0008-QUIC-Reset-init-state-in-SSL_process_quic_post_hands.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0008-QUIC-Reset-init-state-in-SSL_process_quic_post_hands.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0009-QUIC-Don-t-process-an-incomplete-message.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0009-QUIC-Don-t-process-an-incomplete-message.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0010-QUIC-Quick-fix-s2c-to-c2s-for-early-secret.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0010-QUIC-Quick-fix-s2c-to-c2s-for-early-secret.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0011-QUIC-Add-client-early-traffic-secret-storage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0011-QUIC-Add-client-early-traffic-secret-storage.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0012-QUIC-Add-OPENSSL_NO_QUIC-wrapper.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0012-QUIC-Add-OPENSSL_NO_QUIC-wrapper.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0013-QUIC-Correctly-disable-middlebox-compat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0013-QUIC-Correctly-disable-middlebox-compat.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0014-QUIC-Move-QUIC-code-out-of-tls13_change_cipher_state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0014-QUIC-Move-QUIC-code-out-of-tls13_change_cipher_state.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0015-QUIC-Tweeks-to-quic_change_cipher_state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0015-QUIC-Tweeks-to-quic_change_cipher_state.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0016-QUIC-Add-support-for-more-secrets.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0016-QUIC-Add-support-for-more-secrets.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0017-QUIC-Fix-resumption-secret.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0017-QUIC-Fix-resumption-secret.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0018-QUIC-Handle-EndOfEarlyData-and-MaxEarlyData.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0018-QUIC-Handle-EndOfEarlyData-and-MaxEarlyData.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0019-QUIC-Fall-through-for-0RTT.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0019-QUIC-Fall-through-for-0RTT.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0020-QUIC-Some-cleanup-for-the-main-QUIC-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0020-QUIC-Some-cleanup-for-the-main-QUIC-changes.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0021-QUIC-Prevent-KeyUpdate-for-QUIC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0021-QUIC-Prevent-KeyUpdate-for-QUIC.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0022-QUIC-Test-KeyUpdate-rejection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0022-QUIC-Test-KeyUpdate-rejection.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0023-QUIC-Buffer-all-provided-quic-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0023-QUIC-Buffer-all-provided-quic-data.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0024-QUIC-Enforce-consistent-encryption-level-for-handsha.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0024-QUIC-Enforce-consistent-encryption-level-for-handsha.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0025-QUIC-add-v1-quic_transport_parameters.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0025-QUIC-add-v1-quic_transport_parameters.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0026-QUIC-return-success-when-no-post-handshake-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0026-QUIC-return-success-when-no-post-handshake-data.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0027-QUIC-__owur-makes-no-sense-for-void-return-values.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0027-QUIC-__owur-makes-no-sense-for-void-return-values.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0028-QUIC-remove-SSL_R_BAD_DATA_LENGTH-unused.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0028-QUIC-remove-SSL_R_BAD_DATA_LENGTH-unused.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0029-QUIC-SSLerr-ERR_raise-ERR_LIB_SSL.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0029-QUIC-SSLerr-ERR_raise-ERR_LIB_SSL.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0030-QUIC-Add-compile-run-time-checking-for-QUIC.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0030-QUIC-Add-compile-run-time-checking-for-QUIC.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0031-QUIC-Add-early-data-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0031-QUIC-Add-early-data-support.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0032-QUIC-Make-SSL_provide_quic_data-accept-0-length-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0032-QUIC-Make-SSL_provide_quic_data-accept-0-length-data.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0033-QUIC-Process-multiple-post-handshake-messages-in-a-s.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0033-QUIC-Process-multiple-post-handshake-messages-in-a-s.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0034-QUIC-Fix-CI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0034-QUIC-Fix-CI.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0035-QUIC-Break-up-header-body-processing.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0035-QUIC-Break-up-header-body-processing.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0036-QUIC-Don-t-muck-with-FIPS-checksums.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0036-QUIC-Don-t-muck-with-FIPS-checksums.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0037-QUIC-Update-RFC-references.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0037-QUIC-Update-RFC-references.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0038-QUIC-revert-white-space-change.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0038-QUIC-revert-white-space-change.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0039-QUIC-use-SSL_IS_QUIC-in-more-places.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0039-QUIC-use-SSL_IS_QUIC-in-more-places.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0040-QUIC-Error-when-non-empty-session_id-in-CH.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0040-QUIC-Error-when-non-empty-session_id-in-CH.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0041-QUIC-Update-SSL_clear-to-clear-quic-data.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0041-QUIC-Update-SSL_clear-to-clear-quic-data.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0042-QUIC-Better-SSL_clear.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0042-QUIC-Better-SSL_clear.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0043-QUIC-Fix-extension-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0043-QUIC-Fix-extension-test.patch -------------------------------------------------------------------------------- /patch/openssl/quic/0044-QUIC-Update-metadata-version.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/0044-QUIC-Update-metadata-version.patch -------------------------------------------------------------------------------- /patch/openssl/quic/901-Revert-speed-Pass-IV-to-EVP_CipherInit_ex-for-evp-ru.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/901-Revert-speed-Pass-IV-to-EVP_CipherInit_ex-for-evp-ru.patch -------------------------------------------------------------------------------- /patch/openssl/quic/902-Revert-apps-speed.c-Fix-the-benchmarking-for-AEAD-ci.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/patch/openssl/quic/902-Revert-apps-speed.c-Fix-the-benchmarking-for-AEAD-ci.patch -------------------------------------------------------------------------------- /sh/op.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/sh/op.sh -------------------------------------------------------------------------------- /tags/kernel-6.12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiyu1314/openwrt-onecloud/HEAD/tags/kernel-6.12 --------------------------------------------------------------------------------