aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAge
...
* | | | | | | | vnstat: fix musl compatibilityPeter Ivanov2015-06-18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Peter Ivanov <pivanov@hotmail.com>
* | | | | | | | ocserv: don't use isolate workers as seccomp is not enabledNikos Mavrogiannopoulos2015-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | | | ocserv: use procd for init fileNikos Mavrogiannopoulos2015-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | | | ocserv: disabled MIPS16Nikos Mavrogiannopoulos2015-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | | | openconnect: updated to 7.06 and disabled MIPS16Nikos Mavrogiannopoulos2015-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Nikos Mavrogiannopoulos <nmav@gnutls.org>
* | | | | | | | 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>
* | | | | | | | Merge pull request #1406 from jow-/xinetd-musl-compatJonathan McCrohan2015-06-17
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | xinetd: fix musl compatibility
| * | | | | | | | xinetd: fix musl compatibilityJo-Philipp Wich2015-06-17
| |/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Pass HAVE_RLIM_T via TARGET_CPPFLAGS since configure uses that define but never actually declares it. Without doing that, `config.h` tries to declare `rlim_t` itself which leads to `config.h:126:16: error: 'long long long' is too long for GCC` with musl on at least x86_64. Also refresh patches while we're at it. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | | gnunet: update sourceDaniel Golle2015-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | get rid of another cross-compile patch now fixed upstream Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | Merge pull request #1393 from hnyman/vsftpd-muslTed Hess2015-06-17
|\ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | vsftpd: fix musl compatibility
| * | | | | | | | vsftpd: fix musl compatibilityHannu Nyman2015-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make vsftpd to compile with musl, while preserving uclibc compatibility. When using musl: * disable UTMPX functionality * disable -lnsl option in upstream Makefile Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
* | | | | | | | | [sqm-scripts/luci-app-sqm] Document how to disable shaping on a per ↵Toke Høiland-Jørgensen2015-06-17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | direction basis sqm-scripts for a long time interprets a "Down- or Upload speed" of zero as an indication that the shaper should be disabled. Note that really shaping an individual direction down o zero will make the link effectively dead for tcp (think reverse ACK traffic). Son instead of allowing the user to configure something broken, 0 was "over-loaded" to denote no shaping since several years, but that information has not been documented visibly to the users. This commit aims at fixing that oversight. Signed-off-by: Sebastian Moeller <moeller0@gmx.de>
* | | | | | | | | Merge pull request #1395 from jow-/pptpd-musl-compatLuka Perkov2015-06-17
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | pptpd: fix musl compatibility
| * | | | | | | | | pptpd: fix musl compatibilityJo-Philipp Wich2015-06-17
| | |/ / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Ship a net/ppp_defs.h replacement header since musl does not provide one but pppd/pppd.h provided by pppd is needing it. - Replace deprecated MSG_TRYHARD flag with the proper MSG_DONTROUTE one - Unconditionally include string.h in bcrelay to avoid undeclared memset() and strcpy() warnings. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | | | Merge pull request #1363 from nmav/masterNikos Mavrogiannopoulos2015-06-17
|\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | transmission: use procd
| * | | | | | | | | 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>
* | | | | | | | | Merge pull request #1392 from jow-/bridge-must-compatJo-Philipp Wich2015-06-17
|\ \ \ \ \ \ \ \ \ | |_|_|/ / / / / / |/| | | | | | | | bridge-utils: fix musl compatibility
| * | | | | | | | bridge-utils: fix musl compatibilityJo-Philipp Wich2015-06-16
| | |/ / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add missing includes to libbridge.h to define struct timeval and the required u_int*_t types under musl. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* | | | | | | | gnunet: update sourceDaniel Golle2015-06-16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Most of the local patches have been integrated upstream. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | socat: fix musl compatibilityJo-Philipp Wich2015-06-16
|/ / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Do not include netinet/if_ether.h for musl to prevent struct ethhdr redeclarations. Also define NETDB_INTERNAL if needed to fix compilation of the network backends. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
* / / / / / / gnunet: update source and fix build with muslDaniel Golle2015-06-16
|/ / / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | Merge pull request #1362 from oneru/fwknopdSteven Barth2015-06-12
|\ \ \ \ \ \ | | | | | | | | | | | | | | Fwknopd: Set capture interface to wan by default
| * | | | | | Fwknopd: Set capture interface to wan by defaultJonathan Bennett2015-06-10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Jonathan Bennett <JBennett@incomsystems.biz>
* | | | | | | haproxy: add patches from upstreamheil2015-06-11
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - [PATCH 1/2] BUG/MEDIUM: stats: properly initialize the scope before - [PATCH 2/2] BUG/MEDIUM: http: don't forward client shutdown without - [PATCH 3/8] BUG/MINOR: check: fix tcpcheck error message - [PATCH 4/8] CLEANUP: checks: fix double usage of cur / current_step - [PATCH 5/8] BUG/MEDIUM: checks: do not dereference head of a - [PATCH 6/8] CLEANUP: checks: simplify the loop processing of - [PATCH 7/8] BUG/MAJOR: checks: always check for end of list before - [PATCH 8/8] BUG/MEDIUM: checks: do not dereference a list as a - [PATCH 09/10] BUG/MEDIUM: peers: apply a random reconnection timeout - [PATCH 10/10] DOC: Update doc about weight, act and bck fields in the - [PATCH 11/14] MINOR: ssl: add a destructor to free allocated SSL - [PATCH 12/14] BUG/MEDIUM: ssl: fix tune.ssl.default-dh-param value - [PATCH 13/14] BUG/MINOR: cfgparse: fix typo in 'option httplog' error - [PATCH 14/14] BUG/MEDIUM: cfgparse: segfault when userlist is misused Signed-off-by: heil <heil@terminal-consulting.de>
* | | | | | | ethtool: update to 4.0Matthias Schiffer2015-06-10
|/ / / / / / | | | | | | | | | | | | | | | | | | Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
* | | | | | netdiscover: add license infoMarko Ratkaj2015-06-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | | | | luci-app-squid: add packageMarko Ratkaj2015-06-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | | | | squid: minor changes in Makefile and init scriptMarko Ratkaj2015-06-09
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Marko Ratkaj <marko.ratkaj@sartura.hr>
* | | | | | strongswan: bump to 5.3.2Steven Barth2015-06-08
| | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Steven Barth <steven@midlink.org>
* | | | | | Merge pull request #1354 from fededim/masterSteven Barth2015-06-08
|\ \ \ \ \ \ | | | | | | | | | | | | | | sstp-client: updated to version 1.0.10
| * | | | | | sstp-client: updated to version 1.0.10Rupan2015-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Federico Di Marco <fededim@gmail.com>
* | | | | | | strongswan: update to 5.3.1, cleanup broken modulesSteven Barth2015-06-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Steven Barth <steven@midlink.org>
* | | | | | | gnunet: package accidentally dropped peerstore_sqliteDaniel Golle2015-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | xl2tpd: fix xl2tpd optionsDaniel Golle2015-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The previous commit left an unwanted string in the options passed to xl2tpd-control. Remove that as well. Also set procd respawn parameter now that I'm at it. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | xl2tpd: don't let xl2tpd handle redialDaniel Golle2015-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | netifd is taking care of that already. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | gnunet: improve packaging and set fix permissions on firstrunDaniel Golle2015-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | gnurl: no longer force-enable TLS-SRPDaniel Golle2015-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It might not be available in GnuTLS and is not strictly required by the gnurl manifest, see http://www.git.taler.net/?p=gnurl.git;a=blob;f=README;h=f7521aa431a4e77a58dc558880ff54648d69e072;hb=HEAD#l22 Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | gnunet: don't override default to 'n'Daniel Golle2015-06-05
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Overriding DEFAULT to 'n' prevents packages being build unless explicitely selected even if ALL is set. Instead, set 'DEFAULT:=y if PACKAGE_gnunet' for the default packages and otherweise don't touch DEFAULT. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | gnunet: use templates to package componentsDaniel Golle2015-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | gnunet: improve packagesDaniel Golle2015-06-04
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | gnunet: split up into smaller packages, bump versionDaniel Golle2015-06-03
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | knxd: revert to older versionOthmar Truniger2015-06-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | Merge pull request #1330 from tru7/knxdMichael Heimpold2015-05-31
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | knxd: bump to new version
| * | | | | | | knxd: bump to new versionOthmar Truniger2015-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Othmar Truniger <github@truniger.ch>
* | | | | | | | gnunet: improve procd init-scriptDaniel Golle2015-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Directly call /usr/lib/gnunet/libexec/gnunet-service-arm instead of /usr/bin/gnunet-arm, so it remains attached to procd. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | gnurl: bump releaseDaniel Golle2015-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | gnurl: reduce feature-set to match specs in READMEDaniel Golle2015-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | gnurl's README states quite excatly which CONFIGURE_ARGS to pass, so disable lots of unneeded stuff. Signed-off-by: Daniel Golle <daniel@makrotopia.org>
* | | | | | | | gnunet: use upstream fix for libmicrohttpd detectionDaniel Golle2015-05-31
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The autoconf issue when detecting libmicrohttpd was fixed upstream in SVN revision 35845. Use that and remove the dirty work-around. See also: https://gnunet.org/bugs/view.php?id=3805#c9201 Signed-off-by: Daniel Golle <daniel@makrotopia.org>