aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAge
...
* | | | | | adblock: 4.1.3-6Dirk Brenken2022-03-07
| |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | * remove discontinued sources: shallalist, stalkerware * fix a logical glitch in startup trigger handling Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | Merge pull request #18004 from stangri/master-curlStan Grishin2022-03-06
|\ \ \ \ \ | | | | | | | | | | | | curl: update to 7.82.0
| * | | | | curl: update to 7.82.0Stan Grishin2022-03-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * changelog: https://curl.se/changes.html#7_82_0 Signed-off-by: Stan Grishin <stangri@melmac.ca>
* | | | | | seafile: Remove packagesJeffery To2022-03-06
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I believe these packages should be removed (and imported into the abandoned packages repo[1]) as Seafile Server and Seahub have been marked as broken for some time, and I do not believe I will have time to fix or update these packages in the foreseeable future. [1]: https://github.com/openwrt/packages-abandoned/pull/22 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | | | | shadowsocks-libev: add note on nftables set restrictionYousong Zhou2022-03-07
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | | | shadowsocks-libev: add nft_tcp_extra/nft_udp_extra optionsZhong Jianxin2022-03-07
|/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To add extra statement to tcp/udp forward rule, example: ``` config ss_rules 'ss_rules' ... option nft_tcp_extra 'tcp dport { 80, 443 }' # tcp only forward connections with dport 80 or 443 option nft_udp_extra 'udp dport { 53 }' # udp only forward connections with dport 53 ``` This somewhat restores the old ipt_args functionality. Signed-off-by: Zhong Jianxin <azuwis@gmail.com> Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com> (Amend README.md a bit)
* / / / / snort: add conflict with snort3Josef Schlehofer2022-03-04
|/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Both packages provides the same files: - /usr/bin/u2boat - /usr/bin/u2spewfoo - /usr/bin/snort - /etc/init.d/snort - /etc/config/snort So they should be in conflict. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | mdnsresponder: Fix nullpointer dereference while parsing interface listMaarten Aertsen2022-03-04
| | | | | | | | | | | | | | | | | | | | | | | | This patch was backported from https://github.com/IETF-Hackathon/mDNSResponder/commit/1fb07b9524b4afed3a826c087db4dc48a7bfdb8 Signed-off-by: Maarten Aertsen <maarten@rtsn.nl>
* | | | strongswan: add missing dependenciesStijn Tintel2022-03-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix the following build failures by adding the missing dependencies: Package strongswan-mod-connmark is missing dependencies for the following libraries: libip4tc.so.2 Package strongswan-mod-forecast is missing dependencies for the following libraries: libip4tc.so.2 Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>
* | | | tcpproxy: fix Wformat warningRosen Penev2022-03-03
| | | | | | | | | | | | | | | | | | | | | | | | snprintf call requires one more byte for NULL termunator. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | dnsproxy: Update to 0.41.3Tianling Shen2022-03-03
| | | | | | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | haproxy: Update HAProxy to v2.4.14Christian Lachner2022-03-02
| | | | | | | | | | | | | | | | | | | | | | | | - Update haproxy download URL and hash Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | | | sqm-scripts: switch back to iptablesEtienne Champetier2022-03-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following recent dependency rework, we can switch between iptables-legacy and iptables-nft, and they both PROVIDES iptables. Make it easier for user that want/need to stick to firewall3/iptables-legacy to do so. Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* | | | shadowsocks-libev: update README.mdYousong Zhou2022-03-01
| | | | | | | | | | | | | | | | Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | shadowsocks-libev: convert to using nftYousong Zhou2022-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It will be mostly implemented with ucode templates installed at /usr/share/ss-rules and called from init script. The generated nftables rules will be stored at /etc/nftables.d/ Incompatible changes were introduced as described in the README.md file - Netfilter ipset was replaced with nftables sets - UCI options ipt_args and dst_forward_recentrst of section ss_rules are now deprecated. The former does not apply to nftables. The later not yet implemented with nftables. Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | shadowsocks-libev: ss-rules: request presence of nat tableYousong Zhou2022-03-01
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ss-rules with iptables needs presence of netfilter nat table to work. ss-rules works before without explicitly requesting it as a dependency because it's present by default on a pre-firewall4/nftables OpenWrt install. We request it explicitly now to make life easier in case people would like to try ss-rules/iptables on firewall4/nftables enabled OpenWrt system Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
* | | | kcptun: bump to v20210922Chao Liu2022-02-28
| | | | | | | | | | | | | | | | Signed-off-by: Chao Liu <git@expiron.dev>
* | | | gg: Update to 0.2.3Tianling Shen2022-02-28
| | | | | | | | | | | | | | | | Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | | | samba: add ppc64 supportRosen Penev2022-02-28
| | | | | | | | | | | | | | | | | | | | | | | | Needed for QoriQ target Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | samplicator: fix Wformat warningRosen Penev2022-02-28
| | | | | | | | | | | | | | | | | | | | | | | | Wrong type. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | ocserv: updated to 1.1.6Nikos Mavrogiannopoulos2022-02-25
| | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* | | | openconnect: updated to 8.20Nikos Mavrogiannopoulos2022-02-25
|/ / / | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <n.mavrogiannopoulos@gmail.com>
* | | geoipupdate: update to 4.9.0Matthew Hagan2022-02-23
| | | | | | | | | | | | Signed-off-by: Matthew Hagan <mnhagan88@gmail.com>
* | | frp: update to 0.39.0Van Waholtz2022-02-23
| | | | | | | | | | | | Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
* | | frp: add service_triggerVan Waholtz2022-02-23
| | | | | | | | | | | | Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
* | | frpc: add anonymous proxy config supportVan Waholtz2022-02-23
| | | | | | | | | | | | Signed-off-by: Van Waholtz <vanwaholtz@gmail.com>
* | | tcpreplay: bump to version 4.4.1Alexandru Ardelean2022-02-23
| | | | | | | | | | | | Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
* | | bwping: update to version 2.5Oleg Derevenetz2022-02-23
| | | | | | | | | | | | Signed-off-by: Oleg Derevenetz <oleg-derevenetz@yandex.ru>
* | | shorewall-core: fix build on macosSergey V. Lobanov2022-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shorewall-core macos build fails due to: 1. MacOS bash is too old (3.x), but shorewall-core requires bash>4 This patch uses OpenWrt tools/bash built for macos (bash 5.x) 2. install.sh detects Darwin using uname and changes install logic, but it fails in case of cross-platform build This patch uses fakeuname/host tool to avoid Darwin detection Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | shorewall: fix build on macosSergey V. Lobanov2022-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shorewall macos build fails due to: 1. MacOS bash is too old (3.x), but shorewall requires bash>4 This patch uses OpenWrt tools/bash built for macos (bash 5.x) 2. install.sh detects Darwin using uname and changes install logic, but it fails in case of cross-platform build This patch uses fakeuname/host tool to avoid Darwin detection Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | shorewall6-lite: fix build on macosSergey V. Lobanov2022-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shorewall6-lite macos build fails due to: 1. MacOS bash is too old (3.x), but shorewall6-lite requires bash>4 This patch uses OpenWrt tools/bash built for macos (bash 5.x) 2. install.sh detects Darwin using uname and changes install logic, but it fails in case of cross-platform build This patch uses fakeuname/host tool to avoid Darwin detection 3. fakeuname does not work in install.sh because install.sh redefines PATH. This patch removes PATH=... from install.sh on macos Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | shorewall6: fix build on macosSergey V. Lobanov2022-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shorewall6 macos build fails due to: 1. MacOS bash is too old (3.x), but shorewall6 requires bash>4 This patch uses OpenWrt tools/bash built for macos (bash 5.x) 2. install.sh detects Darwin using uname and changes install logic, but it fails in case of cross-platform build This patch uses fakeuname/host tool to avoid Darwin detection Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | shorewall-lite: fix build on macosSergey V. Lobanov2022-02-23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | shorewall-lite macos build fails due to: 1. MacOS bash is too old (3.x), but shorewall-lite requires bash>4 This patch uses OpenWrt tools/bash built for macos (bash 5.x) 2. install.sh detects Darwin using uname and changes install logic, but it fails in case of cross-platform build This patch uses fakeuname/host tool to avoid Darwin detection 3. fakeuname does not work in install.sh because install.sh redefines PATH. This patch removes PATH=... from install.sh on macos Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
* | | i2pd: Update packageR4SAS I2P2022-02-23
| | | | | | | | | | | | | | | | | | | | | * Update to 2.41.0 * Added use AUTORELEASE Signed-off-by: R4SAS I2P <r4sas@i2pmail.org>
* | | htpdate: drop www.freebsd.org from default server listJo-Philipp Wich2022-02-22
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The FreeBSD project stopped publishing HTTP date headers and seeks to limit further resource taxing by distributed htpdate clients using the www.freebsd.org host as default time source. Fixes: #17924 Reported-by: Allan Jude <allanjude@freebsd.org> Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | yggdrasil: bump to 0.4.3George Iv2022-02-21
| | | | | | | | | | | | Signed-off-by: George Iv <zhoreeq@users.noreply.github.com>
* | | gnunet: packaging fixesDaniel Golle2022-02-20
| | | | | | | | | | | | | | | | | | | | | * include gnunet-service-zonemaster-monitor in gnunet-gns package * rename namestore-heap back to namestore-flat Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | usteer: update to latest git headDavid Bauer2022-02-19
|/ / | | | | | | | | | | | | | | | | | | | | 98247d1 usteer: track RRM and BSS-TM support per connection 6ec60fc ubus: add BSS-transition-management support f462de0 local-node: fetch bss-transition-management support c5242dd ubus: add supported beacon-measurement modes 0dd47b1 local-node: convert kick-dely to absolute time 96976ba readme: add initial README Signed-off-by: David Bauer <mail@david-bauer.net>
* | haproxy: Update HAProxy to v2.4.13Christian Lachner2022-02-17
| | | | | | | | | | | | | | - Update haproxy download URL and hash - Updated upstream patches Signed-off-by: Christian Lachner <gladiac@gmail.com>
* | uacme: proper ualpn integrationLucian Cristian2022-02-17
| | | | | | | | | | | | ualpn works only with openssl and gnutls, so default build will not have this included Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | dnsproxy: Update to 0.41.2Tianling Shen2022-02-17
| | | | | | | | | | | | Fixed typo error: `AUTORELESE` -> `AUTORELEASE`. Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
* | uacme: pack ualpn.shLucian Cristian2022-02-16
| | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | frr: branch update, mips64 fixLucian Cristian2022-02-16
| | | | | | | | Signed-off-by: Lucian Cristian <lucian.cristian@gmail.com>
* | Merge pull request #17850 from BKPepe/unboundJosef Schlehofer2022-02-16
|\ \ | | | | | | unbound: update to version 1.15.0
| * | unbound: update to version 1.15.0Josef Schlehofer2022-02-11
| | | | | | | | | | | | | | | | | | Refresh patch Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | openvpn-easy-rsa: make it reproducibleLuiz Angelo Daros de Luca2022-02-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | The "build" script was replacing a ~DATE~ with current date. Now it uses $(SOURCE_DATE_EPOCH). Fixes #17848 Signed-off-by: Luiz Angelo Daros de Luca <luizluca@gmail.com>
* | | ksmbd-tools: update to 3.4.4Rosen Penev2022-02-14
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | obfs4proxy: Update to 0.0.13Jeffery To2022-02-14
| | | | | | | | | | | | Signed-off-by: Jeffery To <jeffery.to@gmail.com>
* | | phantap: switch to nftablesEtienne Champetier2022-02-12
| | | | | | | | | | | | | | | | | | | | | | | | e80be64 Remove disable_eap_hack b066ce2 Switch to nftables / firewall4 4d88b0b Do not harcode build flags Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
* | | ipvsadm: fix build on macosSergey V. Lobanov2022-02-12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ipvsadm build fails on macos due to libipvs Makefiles uses system `ar` that is not compatible with the objectes generated by OpenWrt GCC Toolchain. This commit adds patch to allow ar redefining This commit modifes an old patch (removing CC=gcc is not required due to it is redefinable) Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>