ISDN B channels have a bandwidth of 64000, not 65536

Pointed out by: Christian Weisgerber <naddy@mips.inka.de>
This commit is contained in:
brian 2000-08-16 13:54:04 +00:00
parent dd299b5cb1
commit ea6a9d137e

View File

@ -250,7 +250,7 @@ i4b_Speed(struct physical *p)
if (tcgetattr(p->fd, &ios) == -1 ||
(ret = SpeedToInt(cfgetispeed(&ios))) == 0)
ret = 65536;
ret = 64000;
return ret;
}