aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAge
* gnurl: update homepage URL and use @GNU mirrorsDaniel Golle2019-12-16
| | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* Merge pull request #10793 from micmac1/dnsdist-no-bombRosen Penev2019-12-15
|\ | | | | dnsdist: fix various build failures
| * dnsdist: add dependency on tinycdbSebastian Kemper2019-12-15
| | | | | | | | | | | | | | If libcdb from tinycdb is available dnsdist will link to it. This commit adds the dependency. Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * dnsdist: add missing build dep on protocSebastian Kemper2019-12-14
| | | | | | | | | | | | | | | | | | | | | | The build needs protoc, otherwise it fails. checking if we need to link in protobuf... yes checking for PROTOBUF... yes checking for protoc... no configure: error: Protobuf requested but the protobuf compiler was not found Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
| * dnsdist: add missing lmdb depSebastian Kemper2019-12-14
| | | | | | | | | | | | | | | | | | | | | | Currently dnsdist is failing at packaging stage when lmdb is in staging: make[4]: Leaving directory '/builder/shared-workdir/build/sdk/build_dir/target-x86_64_musl/dnsdist-1.4.0' Package dnsdist is missing dependencies for the following libraries: liblmdb.so Makefile:109: recipe for target '/builder/shared-workdir/build/sdk/bin/packages/x86_64/packages/dnsdist_1.4.0-2_x86_64.ipk' failed Signed-off-by: Sebastian Kemper <sebastian_ml@gmx.net>
* | Merge pull request #10798 from Andy2244/wsdd2-(2019-12-14)Daniel Engberg2019-12-15
|\ \ | | | | | | wsdd2: update to git (2019-12-15), bind to 'lan' only
| * | wsdd2: update to git (2019-12-15), bind to 'lan' onlyAndy Walsh2019-12-15
| |/ | | | | | | | | | | | | | | | | | | | | | | | | * update to git (2019-12-15) * bind to 'lan' interface only * make cifsd compatible (avoid testparm dependency) * only start if needed * add meta data (vendor, model, sku) * update smb.conf procd location * lower restart delay * remove outdated patch Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
* / gnurl: update to version 7.67.0Daniel Golle2019-12-15
|/ | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* Merge pull request #10774 from James-TR/James-TR-patch-1Rosen Penev2019-12-14
|\ | | | | dnsdist: fix missing quote in menu
| * dnsdist: fix missing quote in menu James Taylor2019-12-13
| | | | | | | | | | Fixes missing double quote in menu Signed off by: James Taylor <james@jtaylor.id.au>
* | Merge pull request #10782 from dengqf6/ariangRosen Penev2019-12-14
|\ \ | | | | | | ariang: update to 1.1.4
| * | ariang: update to 1.1.4DENG Qingfang2019-12-14
| | | | | | | | | | | | | | | | | | Update ariang to 1.1.4 Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
* | | mosh: Fix compilation with libcxxRosen Penev2019-12-14
| | | | | | | | | | | | | | | | | | Partial backport of upstream patch.`` Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #10764 from neheb/bfRosen Penev2019-12-13
|\ \ \ | |/ / |/| | bfdd: Fix compilation with uClibc-ng
| * | bfdd: Fix compilation with uClibc-ngRosen Penev2019-12-11
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #10775 from rs/nextdns-1.3.1Rosen Penev2019-12-13
|\ \ \ | | | | | | | | nextdns: update to version 1.3.1
| * | | nextdns: update to version 1.3.1Olivier Poitrey2019-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - IPv6 support - Fix HTTP/2 negociation - Improve endpoint fallback - Add support for unencrypted DNS - Many other fixes and features Signed-off-by: Olivier Poitrey <rs@nextdns.io>
* | | | cgi-io: implement exec actionJo-Philipp Wich2019-12-13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implement a new "cgi-exec" applet which allows to invoke remote commands and stream their stdandard output back to the client via HTTP. This is needed in cases where large amounts of data or binary encoded contents such as tar archives need to be transferred, which are unsuitable to be transported via ubus directly. The exec call is guarded by the same ACL semantics as rpcd's file plugin, means in order to be able to execute a command remotely, the ubus session identified by the given session ID must have read access to the "exec" function of the "cgi-io" scope and an explicit "exec" permission rule for the invoked command in the "file" scope. In order to initiate a transfer, a POST request in x-www-form-urlencoded format must be sent to the applet, with one field "sessionid" holding the login session and another field "command" specifiying the commandline to invoke. Further optional fields are "filename" which - if present - will cause the download applet to set a Content-Dispostition header and "mimetype" which allows to let the applet respond with a specific type instead of the default "application/octet-stream". Below is an example for the required ACL rules to grant exec access to both the "date" and "iptables" commands. The "date" rule specifies the base name of the executable and thus allows invocation with arbitrary parameters while the latter "iptables" rule merely allows one specific set of arguments which must appear exactly in the given order. ubus call session grant '{ "ubus_rpc_session": "...", "scope": "cgi-io", "objects": [ [ "exec", "read" ] ] }' ubus call session grant '{ "ubus_rpc_session": "...", "scope": "file", "objects": [ [ "/bin/date", "exec" ], [ "/usr/sbin/iptables -n -v -L", "exec" ] ] }' Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* | | | git: update to version 2.24.1 (security fix)Jan Pavlinec2019-12-13
|/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes CVE-2019-1348, CVE-2019-1349, CVE-2019-1350, CVE-2019-1351, CVE-2019-1352, CVE-2019-1353, CVE-2019-1354, CVE-2019-1387, and CVE-2019-19604 And fix deprecated PKG_CPE_ID Signed-off-by: Jan Pavlinec <jan.pavlinec@nic.cz>
* | / ibrdtnd: Remove c++03 optionRosen Penev2019-12-12
| |/ |/| | | | | | | | | Needed for libcxx compatibility. It probably generates bigger code. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | Merge pull request #10746 from aleksander0m/aleksander/mm-1-12-2Rosen Penev2019-12-12
|\ \ | | | | | | modemmanager: release 1.12.2
| * | modemmanager: release 1.12.2Aleksander Morgado2019-12-10
| | | | | | | | | | | | | | | | | | | | | | | | This new release also installs additional 'shared utils' loadable libraries in /usr/lib/ModemManager, so make sure we include them in the packaging. Signed-off-by: Aleksander Morgado <aleksander@aleksander.es>
* | | Merge pull request #10717 from WeekendSoftware/safe-searchRosen Penev2019-12-12
|\ \ \ | | | | | | | | net/safe-search Update Google host list.
| * | | safe-search: Update Google host list.Gregory L. Dietsche2019-12-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Periodic update of the list of Google domains using https://www.google.com/supported_domains as a reference. Signed-off-by: Gregory L. Dietsche <gregory.dietsche@cuw.edu>
* | | | Merge pull request #10767 from James-TR/dnsdist/libcapRosen Penev2019-12-12
|\ \ \ \ | | | | | | | | | | dnsdist: add missing dependency on libcap
| * | | | dnsdist: add missing dependency on libcapJames Taylor2019-12-12
| | |_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | | | | When present on the build system dnsdist will try to make use of libcap. This change adds an explicit dependency to ensure it's present at build time, to prevent build failures when another package brings the dependency in. Signed-off-by: James Taylor <james@jtaylor.id.au>
* | | | Merge pull request #10713 from dengqf6/mtrRosen Penev2019-12-12
|\ \ \ \ | |/ / / |/| | | mtr: update to 0.93
| * | | mtr: update to 0.93DENG Qingfang2019-12-12
| | |/ | |/| | | | | | | | | | | | | | | | | | | Update mtr to 0.93 Add size optimization options ath79 ipk size: 31.9k -> 31.4k Signed-off-by: DENG Qingfang <dengqf6@mail2.sysu.edu.cn>
* | | Merge pull request #10704 from neheb/cooRosen Penev2019-12-11
|\ \ \ | | | | | | | | coova-chilli: Update to 1.5
| * | | coova-chilli: Update to 1.5Rosen Penev2019-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Remove upstreamed patches. Added patch to fix compilation. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | Merge pull request #10721 from James-TR/update/dnsdistRosen Penev2019-12-11
|\ \ \ \ | | | | | | | | | | dnsdist: update to 1.4.0 w/ new dependencies
| * | | | dnsdist: update to 1.4.0James Taylor2019-12-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update dnsdist to next major release 1.4.0. This release introduces dependencies on libh2o-evloop and libwslay for support of DNS over HTTPS. Release Blog Post: https://blog.powerdns.com/2019/11/20/dnsdist-1-4-0/ Changelog: https://dnsdist.org/changelog.html#change-1.4.0 Also removes compatibility patches required for previous release that have been incorporated upstream. Signed-off-by: James Taylor <james@jtaylor.id.au>
* | | | | Merge pull request #10726 from neheb/proRosen Penev2019-12-11
|\ \ \ \ \ | |_|/ / / |/| | | | prosody: Update to 0.11.3
| * | | | prosody: Update to 0.11.3Rosen Penev2019-12-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Several Makefile rearrangements for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | | | net/pagekitec: Update to 20191211 versionKarl Palsson2019-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pulls in various bugfixes from the last two years, including changes for openssl deprecation. Signed-off-by: Karl Palsson <karlp@etactica.com>
* | | | | adblock: bugfix 3.8.14Dirk Brenken2019-12-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * fix some whitelist issues (see https://forum.openwrt.org/t/adblock-support-thread/507/1101) Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | Merge pull request #10735 from ysc3839/vpnbypassRosen Penev2019-12-10
|\ \ \ \ \ | | | | | | | | | | | | vpnbypass: add procd reload trigger for vpnbypass config
| * | | | | vpnbypass: add procd reload trigger for vpnbypass configRichard Yu2019-12-10
| |/ / / / | | | | | | | | | | | | | | | Signed-off-by: Richard Yu <yurichard3839@gmail.com>
* | | | | Merge pull request #10747 from dibdot/adblockDirk Brenken2019-12-10
|\ \ \ \ \ | | | | | | | | | | | | adblock: bugfix 3.8.13
| * | | | | adblock: bugfix 3.8.13Dirk Brenken2019-12-10
| | |_|/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * remove 'ransomware' blocklist by abbuse.ch (discontinued) from default adblock config * fix/switch 'someonewhocares' config to https only * fix curl download parameters to follow redirects and suppress needless output * made the tmp directory of sort operations configurable, set 'adb_sorttmp' accordingly (only supported by 'coreutils-sort') Signed-off-by: Dirk Brenken <dev@brenken.org>
* | | | | Merge pull request #10738 from eglooca/masterRosen Penev2019-12-10
|\ \ \ \ \ | |/ / / / |/| | | | netifyd: Updated to v2.98
| * | | | netifyd: Updated to v2.98Darryl Sokoloski2019-12-09
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maintainer: Darryl Sokoloski / @dsokoloski Compile tested: arm_cortex-a15_neon-vfpv4, TP-Link Archer C2600, master Run tested: TP-Link Archer C2600 Change log for v2.98: [FIX] OpenWrt: Silence ABI warnings. [FIX] Fixed socket buffer dead-lock (pop < 0 bytes). [FIX] Silenced site UUID errors (moved to debug level). [FIX] Updated to SPDX identifier for GPL license. [IMP] Migrated from libjson-c to nlohmann JSON for Modern C++. [IMP] Updated agent status with CPU utilization and sink service status. [IMP] Reformatted sink queue utilization status output. [IMP] Support OS-specific restarting. [IMP] Added payload upload and update frequency control. [IMP] Added MAC addresses to JSON interface list. [IMP] Added option to send established flows to connecting clients. [IMP] Added offline capture processing script. Signed-off-by: Darryl Sokoloski <darryl@sokoloski.ca>
* | | | | Merge pull request #10729 from BKPepe/dnscrypt-proxy2-updateRosen Penev2019-12-09
|\ \ \ \ \ | | | | | | | | | | | | dnscrypt-proxy2: Update to version 2.0.34
| * | | | | dnscrypt-proxy2: Update to version 2.0.34Josef Schlehofer2019-12-09
| | |_|_|/ | |/| | | | | | | | | | | | | | | | | | | | | | | Repository was renamed to github.com/DNSCrypt/dnscrypt-proxy Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
* | | | | Merge pull request #10733 from James-TR/update/pdnsRosen Penev2019-12-09
|\ \ \ \ \ | |_|/ / / |/| | | | pdns-recursor: update to 4.2.1
| * | | | pdns-recursor: update to 4.2.1James Taylor2019-12-09
| | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | Updates pdns-recursor to current stable 4.2.1. Also includes more complete fix for boost.m4 BOOST::THREAD detection, removing dependency on boost-thread. Signed-off-by: James Taylor <james@jtaylor.id.au>
* / | | nlbwmon: add procd reload trigger for nlbwmon configRichard Yu2019-12-09
|/ / / | | | | | | | | | Signed-off-by: Richard Yu <yurichard3839@gmail.com>
* | | geth: Update to 1.9.9Rosen Penev2019-12-08
| | | | | | | | | | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* | | Merge pull request #10706 from neheb/ssRosen Penev2019-12-08
|\ \ \ | |_|/ |/| | sstp-client: Update to 1.0.13
| * | sstp-client: Update to 1.0.13Rosen Penev2019-12-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Edited deprecated OpenSSL patch slightly. Fixed up license information. Reorganized Makefile for consistency between packages. Signed-off-by: Rosen Penev <rosenp@gmail.com>