summaryrefslogtreecommitdiff
path: root/openwrt/package/ppp/patches
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2005-09-07 22:28:21 +0000
committerFelix Fietkau <nbd@openwrt.org>2005-09-07 22:28:21 +0000
commit93eac5d55d9bf0f7b41351fc571524472fda7389 (patch)
treefdb58a5f452ff19c267c97b080d1673414946fd4 /openwrt/package/ppp/patches
parentb444f2152909ae8b7aa3dfc89c9f0f63d77320a7 (diff)
downloadmtk-20170518-93eac5d55d9bf0f7b41351fc571524472fda7389.zip
mtk-20170518-93eac5d55d9bf0f7b41351fc571524472fda7389.tar.gz
mtk-20170518-93eac5d55d9bf0f7b41351fc571524472fda7389.tar.bz2
add fixes for dsl code, clean up old hacks
SVN-Revision: 1874
Diffstat (limited to 'openwrt/package/ppp/patches')
-rw-r--r--openwrt/package/ppp/patches/202-atm_fix.patch10
1 files changed, 0 insertions, 10 deletions
diff --git a/openwrt/package/ppp/patches/202-atm_fix.patch b/openwrt/package/ppp/patches/202-atm_fix.patch
index 371dc96..40d9d59 100644
--- a/openwrt/package/ppp/patches/202-atm_fix.patch
+++ b/openwrt/package/ppp/patches/202-atm_fix.patch
@@ -9,13 +9,3 @@
if (!device_got_set)
no_device_given_pppoatm();
fd = socket(AF_ATMPVC, SOCK_DGRAM, 0);
-@@ -152,8 +150,7 @@
- qos.txtp.max_sdu = lcp_allowoptions[0].mru + pppoatm_overhead();
- qos.rxtp.max_sdu = lcp_wantoptions[0].mru + pppoatm_overhead();
- qos.aal = ATM_AAL5;
-- if (setsockopt(fd, SOL_ATM, SO_ATMQOS, &qos, sizeof(qos)) < 0)
-- fatal("setsockopt(SO_ATMQOS): %m");
-+ setsockopt(fd, SOL_ATM, SO_ATMQOS, &qos, sizeof(qos));
- /* TODO: accept on SVCs... */
- if (connect(fd, (struct sockaddr *) &pvcaddr,
- sizeof(struct sockaddr_atmpvc)))