]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - lib/libtermcap/tospeed.c
Copy from vendor branch. This mainly undoes most of the backing out of
[FreeBSD/FreeBSD.git] / lib / libtermcap / tospeed.c
1 /*
2  * Copyright (C) 1995 by Andrey A. Chernov, Moscow, Russia.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 #include <termios.h>
28 #include "termcap.h"
29
30 static struct stable {
31         speed_t speed;
32         short code;
33 } table[] = {
34         {B115200,17},
35         {B57600, 16},
36         {B38400, 15},
37         {B19200, 14},
38         {B9600,  13},
39         {B4800,  12},
40         {B2400,  11},
41         {B1800,  10},
42         {B1200,  9},
43         {B600,   8},
44         {B300,   7},
45         {B200,   6},
46         {B150,   5},
47         {B134,   4},
48         {B110,   3},
49         {B75,    2},
50         {B50,    1},
51         {B0,     0},
52         {-1,    -1}
53 };
54
55 void __set_ospeed(speed_t speed)
56 {
57         struct stable *stable;
58
59         if (speed == B0) {
60                 ospeed = 0;
61                 return;
62         }
63         for (stable = table; stable->speed > B0; stable++) {
64                 /* nearest one, rounded down */
65                 if (stable->speed <= speed) {
66                         ospeed = stable->code;
67                         return;
68                 }
69         }
70         ospeed = 1;     /* 50, min and not hangup */
71 }
72