diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-01-24 13:41:10 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-01-24 13:41:10 +0000 |
commit | 929559c946196a54c1d5c2c773786cbcf1efe27c (patch) | |
tree | 548c161c0958fc39dfa2261e21680a9f9e3be9d0 /package/network/services/ppp/patches | |
parent | 18d4b8783cdfa8cce976e9f36156a632c9818db5 (diff) | |
download | upstream-929559c946196a54c1d5c2c773786cbcf1efe27c.tar.gz upstream-929559c946196a54c1d5c2c773786cbcf1efe27c.tar.bz2 upstream-929559c946196a54c1d5c2c773786cbcf1efe27c.zip |
ppp: on PPPoE, always send PADT when shutting down the connection
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44097
Diffstat (limited to 'package/network/services/ppp/patches')
-rw-r--r-- | package/network/services/ppp/patches/530-pppoe_send_padt.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/package/network/services/ppp/patches/530-pppoe_send_padt.patch b/package/network/services/ppp/patches/530-pppoe_send_padt.patch new file mode 100644 index 0000000000..d4df88e630 --- /dev/null +++ b/package/network/services/ppp/patches/530-pppoe_send_padt.patch @@ -0,0 +1,11 @@ +--- a/pppd/plugins/rp-pppoe/plugin.c ++++ b/pppd/plugins/rp-pppoe/plugin.c +@@ -276,7 +276,7 @@ PPPOEDisconnectDevice(void) + sizeof(struct sockaddr_pppox)) < 0) + error("Failed to disconnect PPPoE socket: %d %m", errno); + close(conn->sessionSocket); +- /* don't send PADT?? */ ++ sendPADT(conn, NULL); + if (conn->discoverySocket >= 0) + close(conn->discoverySocket); + } |