aboutsummaryrefslogtreecommitdiff
path: root/net/transmission/files
Commit message (Collapse)AuthorAge
* transmission: fix command param issue and use default respawn settingsRichard Yu2019-09-27
| | | | Signed-off-by: Richard Yu <yurichard3839@gmail.com>
* transmission: Merge all the command line params in one lineRosen Penev2019-09-26
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Fix typo in init scriptRosen Penev2019-09-25
| | | | Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Fix tracker issue with some firewallsRosen Penev2019-09-23
| | | | | | | | | | | | | | | | | Some firewalls mandate a minimum size of 4k for SYN packets, which transmission does not do by default. Upstream issue here: https://github.com/transmission/transmission/issues/964 Cleanup: Fixed license info. Removed two unnecessary patches. Ran shell script through shellcheck. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Fix compilation under uClibc-ngRosen Penev2019-05-01
| | | | | | | | Upstream has a patch for this dated 2016. Also ran the init script through shellcheck. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Allow user to configure web ui home directoryAndrii Korzh2018-07-12
| | | | Signed-off-by: Andrii Korzh <andrii.korzh@gmail.com>
* transmission: Update to 2.94Rosen Penev2018-05-27
| | | | | | | | Mainly a bugfix for XSS. Patches have been refreshed. Added an upstream fix for TLS verification. Now enabled by default. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Add rpc_host_whitelist support.Rosen Penev2018-04-06
| | | | | | | | | | It was requested as it can be useful under certain circumstances. Disabled rpc_whitelist by default. Not only is there a firewall, but it denies access when IP address of the device is changed. Added group support in UCI. Fixes cases where group does not match the user (nobody:nogroup). Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Fix HTTPS and mobile devices.Rosen Penev2018-03-01
| | | | | | | | | | | | HTTPS verification is totally broken in Transmission. Unclear why. Disabling as a result. Safari exposes a JavaScript bug that makes it not load. Fixed. Portcheck was backported to HTTPS for testing initially. Seems like a good idea. Makefile was also fixed to use the external libnatpmp. Smaller binary. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Restored config_overwrite due to popular demand.Rosen Penev2018-02-13
| | | | | | | | | | libnatpmp was added as a dependancy to avoid built-in version. Makefile went through a few adjustments to make it simpler. CMake support is not happening since Travis is using a broken Ubuntu install. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Fix port test + other fixes.Rosen Penev2018-02-01
| | | | | | | | | | | | Ran the transmission init script through shellcheck and fixed errors. Also cleaned up a bit. Removed ionice support. Will reintroduce if procd adds support. Removed config_overwrite debugging variable. No need for it. Enabled TLS verify by default. Added a dependancy to ca-bundle as a result. This is a default in current trunk. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Update to 2.93 + fixes [v2]Rosen Penev2018-01-28
| | | | | | | | | | | | | | DNS rebinding protection introduced a new option. Use it to disable it as OpenWrt does not need it. Adjusted Makefile to use the release instead of a git version. Also cleaned up and added LICENSE entries. Eliminated useless patches. The syslog one actually doesn't log much. No need to mask the os release anymore either. Added group entry to init script. Otherwise files end up being owned by user:root which is bogus. v2: Previous maintainer relied on git version of Transmission for mbedtls support. Backport it to the stable instead. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* Revert "transmission: Update to 2.93 + fixes"Hannu Nyman2018-01-28
| | | | | | | | | | | | | | This reverts commit 606f615048286f432175f5133cbeb14f9db9257f. The commit broke the patches: > Applying ./patches/020-use-internal-miniupnp.patch using plaintext: > patching file configure.ac > Hunk #1 succeeded at 378 (offset -8 lines). > > Applying ./patches/040-fix-for-mbedtls.patch using plaintext: > patching file configure.ac > Hunk #1 FAILED at 154. > 1 out of 1 hunk FAILED -- saving rejects to file configure.ac.rej
* transmission: Update to 2.93 + fixesRosen Penev2018-01-27
| | | | | | | | | | | | DNS rebinding protection introduced a new option. Use it to disable it as OpenWrt does not need it. Adjusted Makefile to use the release instead of a git version. Also cleaned up and added LICENSE entries. Eliminated useless patches. The syslog one actually doesn't log much. No need to mask the os release anymore either. Added group entry to init script. Otherwise files end up being owned by user:root which is bogus. Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: Update to latest git and fix syslog.Rosen Penev2017-11-22
| | | | | | | | | | | | | The init script runs transmission with the foreground parameter for procd to control it. However, if transmission is ran in the foreground, nothing is logged to syslog. Added a patch to remove this restriction. Also added a sysctl file that removes these warnings: UDP Failed to set receive buffer: requested 4194304, got 262142 (tr-udp.c:75) UDP Please add the line "net.core.rmem_max = 4194304" to /etc/sysctl.conf (tr-udp.c:80) UDP Failed to set send buffer: requested 1048576, got 262142 (tr-udp.c:86) UDP Please add the line "net.core.wmem_max = 1048576" to /etc/sysctl.conf (tr-udp.c:91) Signed-off-by: Rosen Penev <rosenp@gmail.com>
* transmission: add nice and ionice support, store persistent config, add ↵Maxim Storchak2015-08-02
| | | | | | transmission user and group Signed-off-by: Maxim Storchak <m.storchak@gmail.com>
* transmission: increase the number of retries for respawnNikos Mavrogiannopoulos2015-06-17
| | | | | | | The default 5 per hour is too small for transmission which may crash quite some times. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* Optimized /proc/meminfo parsingNikos Mavrogiannopoulos2015-06-14
| | | | | | Suggested by @jow- Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* transmission: make the memory percentage allowed configurableNikos Mavrogiannopoulos2015-06-13
| | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* transmission: use procdNikos Mavrogiannopoulos2015-06-13
| | | | | | | | That allows to restart transmission when it crashes, to limit the memory used by it, as well as be jailed in the directories it is supposed to access. Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* transmission: import from packages, update to latestMaxim Storchak2014-07-13
Signed-off-by: Maxim Storchak <m.storchak@gmail.com>