5f177d2dd1425d90651ccbfadf835d41a368cec4
[libcmdline.git] / src / client / main.c
1 /*
2  * Copyright (c) 2009, Olivier MATZ <zer0@droids-corp.org>
3  * All rights reserved.
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are met:
6  *
7  *     * Redistributions of source code must retain the above copyright
8  *       notice, this list of conditions and the following disclaimer.
9  *     * Redistributions in binary form must reproduce the above copyright
10  *       notice, this list of conditions and the following disclaimer in the
11  *       documentation and/or other materials provided with the distribution.
12  *     * Neither the name of the University of California, Berkeley nor the
13  *       names of its contributors may be used to endorse or promote products
14  *       derived from this software without specific prior written permission.
15  *
16  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
17  * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
18  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
19  * DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
20  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
21  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
22  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
23  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
25  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26  */
27
28 #include <stdio.h>
29 #include <string.h>
30 #include <stdint.h>
31 #include <math.h>
32
33 #include <sys/socket.h>
34 #include <netinet/in.h>
35 #include <sys/socket.h>
36 #include <arpa/inet.h>
37
38 #include <unistd.h>
39 #include <termios.h>
40
41
42 int main(void) 
43 {
44         struct termios oldterm, term;
45         struct sockaddr_in sin_ci;
46         fd_set fds;
47         int s;
48         char c;
49
50         s = socket(PF_INET, SOCK_STREAM, 0);
51         if (s < 0) {
52                 printf("socket() failed\n");
53                 return s;
54         }
55
56         /* XXX specify address */
57         memset(&sin_ci, 0, sizeof(sin_ci));
58         sin_ci.sin_family = AF_INET;
59         inet_pton(AF_INET, "127.0.0.1", &sin_ci.sin_addr.s_addr);
60         sin_ci.sin_port = htons(1234);
61 #ifndef __linux__
62         sin_ci.sin_len = sizeof(sin_ci);
63 #endif
64
65         if (connect(s, (struct sockaddr *)&sin_ci, sizeof(sin_ci)) < 0) {
66                 printf("connect() failed\n");
67                 return s;
68         }
69
70         tcgetattr(0, &oldterm);
71         memcpy(&term, &oldterm, sizeof(term));
72         term.c_lflag &= ~(ICANON | ECHO | ISIG);
73         tcsetattr(0, TCSANOW, &term);
74         setbuf(stdin, NULL);
75
76         while (1) {
77                 FD_ZERO(&fds);
78                 FD_SET(0, &fds);
79                 FD_SET(s, &fds);
80                 if (select(s+1, &fds, NULL, NULL, NULL) < 0)
81                         break;
82                 if (FD_ISSET(0, &fds)) {
83                         if (read(0, &c, 1) <= 0)
84                                 break;
85                         write(s, &c, 1);
86                 }
87                 if (FD_ISSET(s, &fds)) {
88                         if (read(s, &c, 1) <= 0)
89                                 break;
90                         write(1, &c, 1);
91                 }
92         }
93         tcsetattr(0, TCSANOW, &oldterm);
94         printf("\n");
95
96         return 0;
97 }
98
99