]> git.decadent.org.uk Git - ap-utils.git/blob - ap-gl/ap-gl.c
Imported Upstream version 1.5~pre1
[ap-utils.git] / ap-gl / ap-gl.c
1 /*
2  *      ap-config.c from Wireless Access Point Utilites for Unix
3  *
4  * Copyright (c) 2002 Roman Festchook <roma at polesye dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License Version 2 from
8  * June 1991 as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18  *
19  */
20
21 #include <stdlib.h>
22 #include <string.h>
23 #include <menu.h>
24 #include <sys/types.h>
25 #include <unistd.h>
26 #include <fcntl.h>
27 #include <sys/ioctl.h>
28 #include "ap-utils.h"
29
30 WINDOW *win_for_menu, *sub_for_menu, *win_for_help, *main_win, *main_sub;
31 char *community, *name;
32 int sockfd, atmel410_filter = 1, wait_mode = WAIT_FOREVER;
33 struct in_addr ap_ip;
34 char *prog_title = "Wireless AP Configurator for GlobalSun";
35 char set_oeminfo_allowed = 0;
36 extern char *ap_types[];
37
38 void config_menu()
39 {
40     struct umitems umenu_atmel[] = {
41         {_("Bridging"), _("Set bridging and IP-related options"), bridging,
42          0},
43         {_("Wireless"), _("Set wireless options"), atmel_wireless, 0},
44         {_("Privacy"), MENU_ENCRYPT, wep, 0},
45         {_("MAC auth"), MENU_MAC, atmel_auth_mac, 0},
46         {_("Community"), MENU_COMMUNITY, AuthorizedSettings, 0},
47         {_("Radio"), _("Set radio signal power and antenna options"),
48          power, 0},
49         {"..", MAIN_MENU, NULL, 0},
50         {0, 0, NULL, 0}
51     };
52
53    set_oeminfo_allowed++;
54    uni_menu(umenu_atmel, sizeof(umenu_atmel) / sizeof(umenu_atmel[0]));
55    set_oeminfo_allowed--;
56 }
57
58
59 void command_menu()
60 {
61     struct umitems command_umenu_atmel[] = {
62         {_("Upload"), _("Activate current configuration"), upload, 0},
63         {_("Defaults"), _("Restore factory default settings"), defaults, 0},
64         {_("Reset"),
65          _("Reset AP. All not uploaded configuration will be lost"), reset, 0},
66         {_("TestMode"), _("Put Access Point in test mode"), test, 0},
67         {"..", MAIN_MENU, NULL, 0},
68         {0, 0, NULL, 0}
69     };
70
71     ap_types[1] = "ATMEL_PRISM";
72
73     uni_menu(command_umenu_atmel, sizeof(command_umenu_atmel) / sizeof(command_umenu_atmel[0]));
74 }
75
76 void stat_menu()
77 {
78     struct umitems umenu_atmel[] = {
79         {_("SysInfo"), MENU_SYSINFO, atmel_sysinfo, 0},
80         {_("Ethernet"), _("Get ethernet port statistics"), EthStat, 0},
81         {_("Wireless"), MENU_WIRELESS, WirelessStat, 0},
82         {_("Stations"), MENU_STAS, atmel_stations, 0},
83         {_("KnownAPs"), _("Get info about known Access Points"), APs, 0},
84         {"..", MAIN_MENU, NULL, 0},
85         {0, 0, NULL, 0}
86     };
87     
88     uni_menu(umenu_atmel, sizeof(umenu_atmel) / sizeof(umenu_atmel[0]));
89 }
90
91 void _auth()
92 {
93     if (get_opts() == 0)
94         connect_options((unsigned long) NULL, ATMEL410+1);
95 }
96
97 void main_menu()
98 {
99     struct umitems config_umenu[] = {
100         {_("Info"), MENU_INFO, stat_menu, 1},
101         {_("Config"), MENU_CONFIG, config_menu, 1},
102         {_("Commands"), _("Execute commands on Access Point"),
103          command_menu, 1},
104         {_("Connect"), MENU_CONNECT, _auth, 0},
105         {_("Search"), MENU_SEARCH, ap_search, 0},
106         {_("About"), MENU_ABOUT, about, 0},
107         {_("Shell"), MENU_SHELL, exit_shell, 0},
108         {_("Exit"), MENU_EXIT, exit_program, 0},
109         {0, 0, NULL, 0}
110     };
111     uni_menu(config_umenu, sizeof(config_umenu) / sizeof(config_umenu[0]));
112 }
113
114
115
116 int main( /*int argc, char **argv */ )
117 {
118     int i;
119     WINDOW *win_for_title;
120     char message[100];
121
122     ap_types[0]="ATMEL_PRISM";
123
124 #ifdef HAVE_GETTEXT
125     /* locale support init */
126     setlocale(LC_ALL, "");
127     bindtextdomain("ap-utils", LOCALEDIR);
128     textdomain("ap-utils");
129 #endif
130
131     initscr();
132     if (has_colors()) {
133         start_color();
134         init_pair(1, COLOR_BLACK, COLOR_CYAN);
135         init_pair(2, COLOR_BLACK, COLOR_WHITE);
136         init_pair(3, COLOR_BLACK, COLOR_GREEN);
137         init_pair(4, COLOR_WHITE, COLOR_RED);
138     }
139
140     noraw();
141     cbreak();
142     noecho();
143     scrollok(stdscr, TRUE);
144     idlok(stdscr, TRUE);
145     keypad(stdscr, TRUE);
146     refresh();
147
148 /* draw help win */
149     win_for_help = newwin(1, COLS, LINES - 1, 0);
150     wattrset(win_for_help, COLOR_PAIR(1));
151     print_help("");
152
153 /* draw title win */
154     win_for_title = newwin(1, COLS, 0, 0);
155     wattrset(win_for_title, COLOR_PAIR(1));
156     for (i = 0; i < COLS; i++)
157         waddch(win_for_title, ' ');
158     sprintf(message, _("Wireless Access Point Configurator ver. %s"),
159             VERSION);
160     mvwaddstr(win_for_title, 0, (COLS - strlen(message)) / 2, message);
161     wrefresh(win_for_title);
162
163 /* draw menu win */
164     win_for_menu = newwin(LINES - 2, MCOLS, 1, 0);
165     sub_for_menu = derwin(win_for_menu, LINES - 5, MCOLS - 2, 2, 1);
166     set_menu_win(NULL, win_for_menu);
167     set_menu_sub(NULL, sub_for_menu);
168     attrset(COLOR_PAIR(1));
169
170     /* íÁÌÀÀ ÒÁÍËÕ */
171     waddch(win_for_menu, ACS_BSSB);
172     for (i = 0; i < MCOLS - 2; i++)
173         waddch(win_for_menu, ACS_BSBS);
174     waddch(win_for_menu, ACS_BSSS);
175     for (i = 0; i < LINES - 4; i++) {
176         waddch(win_for_menu, ACS_SBSB);
177         mvwaddch(win_for_menu, i + 1, MCOLS - 1, ACS_SBSB);
178     }
179     waddch(win_for_menu, ACS_SSBB);
180     for (i = 0; i < MCOLS - 2; i++)
181         waddch(win_for_menu, ACS_BSBS);
182     waddch(win_for_menu, ACS_SSBS);
183     wrefresh(win_for_menu);
184
185 /* draw_main_win */
186     main_win = newwin(LINES - 2, COLS - MCOLS, 1, MCOLS);
187     /* íÁÌÀÀ ÒÁÍËÕ */
188     for (i = 0; i < COLS - MCOLS - 1; i++)
189         waddch(main_win, ACS_BSBS);
190     waddch(main_win, ACS_BBSS);
191     for (i = 0; i < LINES - 4; i++)
192         mvwaddch(main_win, i + 1, COLS - MCOLS - 1, ACS_SBSB);
193     for (i = 0; i < COLS - MCOLS - 1; i++)
194         waddch(main_win, ACS_BSBS);
195     waddch(main_win, ACS_SBBS);
196     main_sub = derwin(main_win, LINES - 4, COLS - MCOLS - 1, 1, 0);
197     wclear(main_sub);
198     wrefresh(main_win);
199
200     about();
201     if (get_opts() == 0)
202         connect_options((unsigned long) NULL, ATMEL410+1);
203
204     while (1)
205         main_menu();
206
207 /* Not reachable */
208     return 0;
209 }
210