Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-10-26 | Merge pull request #185 from svlobanov/pcre2-1 | Denys Fedoryshchenko | |
migrate from pcre to pcre2 | |||
2024-10-23 | Merge pull request #188 from svlobanov/entware | Denys Fedoryshchenko | |
build: fix build for entware (HAVE_GOOD_IFARP detection issue) | |||
2024-10-04 | Merge pull request #171 from ZBoris7/master | Dmitriy Eshenko | |
pppd_compat: add Framed-Interface-Id attribute support in radattr | |||
2024-10-04 | Merge pull request #183 from svlobanov/gcc14-compile-errors | Denys Fedoryshchenko | |
build: fix compile errors on GCC 14 | |||
2024-10-04 | Merge pull request #205 from ↵ | Denys Fedoryshchenko | |
achillelamb/fix-ppp-lcp-echo-reply-greater-than-client-mru fix(ppp_lcp): truncate echo reply if size > client MRU | |||
2024-10-04 | fix(ppp_lcp): truncate echo reply if size > client MRU | achillelamb | |
Fix issue #204 Proposed by https://github.com/achillelamb | |||
2024-09-11 | Merge pull request #195 from nuclearcat/fix-typo-free | Denys Fedoryshchenko | |
fix(musl/l2tp_session_free): Fix, likely typo | |||
2024-09-11 | fix(musl/l2tp_session_free): Fix, likely typo | Denys Fedoryshchenko | |
It is logical, that function should remain same, not changed to free. Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com> | |||
2024-09-05 | Merge pull request #193 from svlobanov/revert-pr-190 | Sergey V. Lobanov | |
Revert "Fix #189: Make module pppoe work without module radius" | |||
2024-09-05 | Revert "Fix #189: Make module pppoe work without module radius" | Sergey V. Lobanov | |
This reverts commit 543700aed1ac045f12dfafd898bbbbae955fee31. | |||
2024-09-05 | Merge pull request #191 from svlobanov/test-pppoe-chap-secrets | Denys Fedoryshchenko | |
tests: add test pppoe session using chap-secrets auth | |||
2024-09-05 | Merge pull request #190 from Tokarak/pr-fix-188 | Denys Fedoryshchenko | |
pppoe: fix #189 | |||
2024-09-04 | tests: add test pppoe session using chap-secrets auth | Sergey V. Lobanov | |
2024-09-04 | Fix #189: Make module pppoe work without module radius | Nazar Androshchuk | |
The radius library is now linked in pppoe if `-DRADIUS` is true; it wasn't any issue when `-DRADIUS=FALSE`. This patch can't be worked around if the user wants to use pppoe with chap-secrets, because radius conflicts with chap-secrets. | |||
2024-09-02 | build: fix build for entware (HAVE_GOOD_IFARP detection issue) | Sergey V. Lobanov | |
Linux kernel before 4.11 has the issue decribed in the commit: https://github.com/torvalds/linux/commit/2618be7dccf8739b89e1906b64bd8d551af351e6 It fails accel-ppp build on entware. Let's include sys/socket.h to avoid this issue. All files that use linux/if_arp.h includes sys/socket.h before | |||
2024-09-02 | ci: change libpcre to libpcre2 | Sergey V. Lobanov | |
2024-09-02 | migrate from pcre to pcre2 | Sergey V. Lobanov | |
PCRE is not supported anymore and removed from several distros | |||
2024-09-02 | Merge pull request #181 from svlobanov/iputils-be-vlan-add-fix | Denys Fedoryshchenko | |
iputils: fix vlan creation on big-endian platforms | |||
2024-09-02 | Merge pull request #180 from svlobanov/owrt2 | Denys Fedoryshchenko | |
fix __WORDSIZE macro on musl 32 bit platforms | |||
2024-09-02 | Merge pull request #179 from svlobanov/test-in-alpine2 | Denys Fedoryshchenko | |
ci: run tests in alpine vm | |||
2024-09-01 | pppd_compat: add Framed-Interface-Id attribute support in radattr | Boris Zervu | |
2024-08-27 | build: fix compile errors on GCC 14 | Sergey V. Lobanov | |
This patch fixes compile errors on GCC 14 like the following /root/accel-ppp/accel-pppd/radius/packet.c: In function 'rad_packet_recv': /root/accel-ppp/accel-pppd/radius/packet.c:142:72: error: passing argument 5 of 'recvfrom' from incompatible pointer type [-Wincompatible-pointer-types] 142 | n = recvfrom(fd, pack->buf, REQ_LENGTH_MAX, 0, addr, &addr_len); | ^~~~ | | | struct sockaddr_in * In file included from /usr/include/netinet/in.h:10, from /usr/include/arpa/inet.h:9, from /root/accel-ppp/accel-pppd/radius/packet.c:10: /usr/include/sys/socket.h:397:55: note: expected 'struct sockaddr * restrict' but argument is of type 'struct sockaddr_in *' Reference: https://gcc.gnu.org/gcc-14/porting_to.html | |||
2024-08-26 | iputils: fix vlan creation on big-endian platforms | Sergey V. Lobanov | |
2024-08-25 | fix __WORDSIZE macro on musl 32 bit platforms | Sergey V. Lobanov | |
This patch allows to build accel-ppp on mips32/ppc32 openwrt (musl) | |||
2024-08-23 | ci: run tests in alpine vm | Sergey V. Lobanov | |
Alpine Linux uses musl libc so now accel-ppp is tested under musl Currently, Alpine Linux doesn't provide a link to the latest stable version so direct link to Alpine 3.20 is used Improved musl support might be used to run on platforms like openwrt without additional patches | |||
2024-08-22 | Merge pull request #176 from svlobanov/ci-gentoo | Denys Fedoryshchenko | |
ci: add build in gentoo container | |||
2024-08-22 | Merge pull request #177 from svlobanov/pcre-tests | Denys Fedoryshchenko | |
tests: add pcre negative cases, improve pcre-related code test coverage | |||
2024-08-19 | tests: fix execution order | Sergey V. Lobanov | |
2024-08-19 | tests: add pcre negative cases, improve pcre-related code test coverage | Sergey V. Lobanov | |
these test cases will help for pcre2 migration (issue #173) | |||
2024-08-18 | ci: add build in gentoo container | Sergey V. Lobanov | |
2024-08-18 | Merge pull request #174 from svlobanov/ci-speedup | Denys Fedoryshchenko | |
ci: speedup virtual machines using kvm and host cpu passthrough | |||
2024-08-18 | Merge pull request #175 from accel-ppp/revert-145-dkms | Denys Fedoryshchenko | |
Revert "build: add dkms support for ipoe and vlan_mon drivers, ci optimizations" | |||
2024-08-18 | Revert "build: add dkms support for ipoe and vlan_mon drivers, ci optimizations"revert-145-dkms | Denys Fedoryshchenko | |
2024-08-18 | Merge pull request #145 from svlobanov/dkms | Denys Fedoryshchenko | |
build: add dkms support for ipoe and vlan_mon drivers, ci optimizations | |||
2024-08-18 | Merge pull request #163 from dpokrovsky/http-error-fix | Denys Fedoryshchenko | |
Fixes the issue #124 "HTTP replay for non SSTP query" and log_debug2 in Triton lib | |||
2024-08-17 | ci: speedup virtual machines using kvm and host cpu passthrough | Sergey V. Lobanov | |
github now allows kvm and cpu passthrough, enable it to speedup ci | |||
2024-07-28 | Merge pull request #167 from nuclearcat/fix-connlimit-error | Denys Fedoryshchenko | |
Fix issue #131, pptp doesnt work without connlimit | |||
2024-07-28 | Fix issue #131, pptp doesnt work without connlimit | Denys Fedoryshchenko | |
Fix issue https://github.com/accel-ppp/accel-ppp/issues/131 Proposed by https://github.com/kugel- Author: Thomas Martitz <kugel@rockbox.org> Signed-off-by: Denys Fedoryshchenko <denys.f@collabora.com> | |||
2024-07-07 | Merge pull request #164 from svlobanov/ci-remove-debian10 | Denys Fedoryshchenko | |
ci: remove debian10 support | |||
2024-07-02 | ci: remove debian10 support | Sergey V. Lobanov | |
Debian10 LTS is EoL (ref: https://wiki.debian.org/LTS) so it is removed from CI. Debian10 ELTS is maintained by third-party organization, only some packages are maintained so there is no reason to support Debian10 in CI | |||
2024-06-14 | Fixes the issue #124 "HTTP replay for non SSTP query" | Dmitry Pokrovsky | |
2024-06-14 | Fixes the issue #124 "HTTP replay for non SSTP query" | Dmitry Pokrovsky | |
2024-06-14 | Revert "1. Fixes the issue #124 "HTTP replay for non SSTP query"" | Dmitry Pokrovsky | |
This reverts commit 635ab1b77b06a8891479a46a0e1ba88315ff3958. | |||
2024-06-12 | 1. Fixes the issue #124 "HTTP replay for non SSTP query" | Dmitry Pokrovsky | |
2. Fixes log_debug2 in Triton lib | |||
2024-06-02 | build: add dkms support for ipoe and vlan_mon drivers, ci optimizations | Sergey V. Lobanov | |
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in> | |||
2024-06-02 | Merge pull request #146 from svlobanov/leaf-qdisc-tbf-fix | Dmitriy Eshenko | |
shaper: fix tbf leaf-qdisc | |||
2024-06-01 | shaper: fix tbf leaf-qdisc | Sergey V. Lobanov | |
bad commit: bc85fe18e6066814d95d1bdc1a3dfe8cc8f9786f Reported-By: StasN77 <stasn77@gmail.com> Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in> | |||
2024-05-31 | Merge pull request #144 from svlobanov/tbf-leaf-qdisc | Dmitriy Eshenko | |
shaper: add leaf-qdisc support for tbf rate-limiter | |||
2024-05-27 | Merge pull request #143 from svlobanov/gh-ubuntu-24-04 | Denys Fedoryshchenko | |
ci: use ubuntu 24.04 as default runner in github | |||
2024-05-26 | shaper: add leaf-qdisc support for tbf rate-limiter | Sergey V. Lobanov | |
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in> |