From: Paul Mackerras Date: Wed, 27 Dec 2000 23:25:12 +0000 (+0000) Subject: Add 76800 and 921600 baud rates X-Git-Tag: ppp-2.4.7~520 X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=commitdiff_plain;h=a6fc2c998f149987f4f3c402f0e07ec11c501975 Add 76800 and 921600 baud rates --- diff --git a/pppd/sys-linux.c b/pppd/sys-linux.c index 448d426..fbad847 100644 --- a/pppd/sys-linux.c +++ b/pppd/sys-linux.c @@ -738,6 +738,9 @@ struct speed { #ifdef B57600 { 57600, B57600 }, #endif +#ifdef B76800 + { 76800, B76800 }, +#endif #ifdef B115200 { 115200, B115200 }, #endif @@ -752,6 +755,9 @@ struct speed { #endif #ifdef B460800 { 460800, B460800 }, +#endif +#ifdef B921600 + { 921600, B921600 }, #endif { 0, 0 } };