4505baafb8
* New pppd options have been added: * ifname, to set the name for the PPP interface device * defaultroute-metric, to set the metric for the default route * defaultroute6, to add an IPv6 default route (with nodefaultroute6 to prevent adding an IPv6 default route). * up_sdnotify, to have pppd notify systemd when the link is up. * The rp-pppoe plugin has new options: * host-uniq, to set the Host-Uniq value to send * pppoe-padi-timeout, to set the timeout for discovery packets * pppoe-padi-attempts, to set the number of discovery attempts. * Added the CLASS attribute in radius packets. * Fixed warnings and issues found by static analysis. - Obsoleted patches: [...] - Patches that got renamed, because they needed rediffing: [...] - bsc#1172916: Fix an outdated comment for lcp-echo-interval. OBS-URL: https://build.opensuse.org/package/show/network/ppp?expand=0&rev=60
28 lines
474 B
Diff
28 lines
474 B
Diff
--- pppd/sys-linux.c.orig
|
|
+++ pppd/sys-linux.c
|
|
@@ -904,6 +904,24 @@ struct speed {
|
|
#ifdef B4000000
|
|
{ 4000000, B4000000 },
|
|
#endif
|
|
+#ifdef B1500000
|
|
+ { 1500000, B1500000 },
|
|
+#endif
|
|
+#ifdef B2000000
|
|
+ { 2000000, B2000000 },
|
|
+#endif
|
|
+#ifdef B2500000
|
|
+ { 2500000, B2500000 },
|
|
+#endif
|
|
+#ifdef B3000000
|
|
+ { 3000000, B3000000 },
|
|
+#endif
|
|
+#ifdef B3500000
|
|
+ { 3500000, B3500000 },
|
|
+#endif
|
|
+#ifdef B4000000
|
|
+ { 4000000, B4000000 },
|
|
+#endif
|
|
{ 0, 0 }
|
|
};
|
|
|