wmbutton: initTooltip has no argument
[dockapps.git] / wmppp.app / wmppp / wmppp.c
blob1f22fc29a352efccbfaced7cda09b08d500b5f3e
1 /*
2 Best viewed with vim5, using ts=4
4 This code was mainly put together by looking at the
5 following programs:
7 asclock
8 A neat piece of equip, used to display the date
9 and time on the screen.
10 Comes with every WindowMaker installation.
12 Source used:
13 How do I create a not so solid window?
14 How do I open a window?
15 How do I use pixmaps?
17 pppstats
18 A program that prints the amount of data that
19 is transferred over a ppp-line.
21 Source used:
22 How do I read the ppp device?
23 ------------------------------------------------------------
25 Authors: Martijn Pieterse (pieterse@xs4all.nl)
26 Antoine Nulle (warp@xs4all.nl)
28 This program might be Y2K resistant. We shall see. :)
30 This program is distributed under the GPL license.
31 (as were asclock and pppstats)
33 Known Features: (or in non M$ talk, BUGS)
34 * none known so far in this release
36 ----
37 Thanks
38 ----
40 CCC (Constructive Code Criticism):
42 Marcelo E. Magallon
43 Thanks a LOT! It takes a while to get me convinced... :)
46 Minor bugs and ideas:
48 Marc De Scheemaecker / David Mihm / Chris Soghoian /
49 Alessandro Usseglio Viretta
51 and ofcourse numerous ppl who send us bug reports.
52 (numerous? hmm.. todo: rephrase this :) )
53 Make that numberous m8ey :)
55 ----
56 Changes:
57 ---
58 05/09/1998 (Martijn Pieterse, pieterse@xs4all.nl)
59 * Added:
60 Speed-O-Meter (after 60 seconds)
61 Fixed Error reporting when pressing X
62 Removed the ugly kb lines
63 Stopped clearing on-line time when pressing X
64 Added createXBMfromXPM
65 08/05/1998 (Martijn Pieterse, pieterse@xs4all.nl)
66 * Removed some code from get_statistics
67 * Check if "ifdown" is empty before execCommanding it!
68 07/05/1998 (Martijn Pieterse, pieterse@xs4all.nl)
69 * Made the program use the xpm like warp wanted it to be :)
70 04/05/1998 (Martijn Pieterse, pieterse@xs4all.nl)
71 * Added pppX support. (EXPERIMENTAL!)
72 Removed HARD_CODED_DEV. (that stayed in long! :) )
73 * Changed 33600 speed indication to 33k6
74 Bugs if larger than 115k2 (depends on how much 1's present)
75 Moved the speed ind. code to DrawSpeedInd
76 * Added 1k lines in the stats
77 * Moved all the "ppp0" references into HARD_CODED_DEV.
78 for easy change
79 03/05/1998 (Martijn Pieterse, pieterse@xs4all.nl)
80 * Removed the number after -t.
81 02/05/1998 (Martijn Pieterse, pieterse@xs4all.nl)
82 * Removed the heyho code :)
83 * Changed read_rc_file to parse_rcfile. suggested bt Marcelo E. Magallon
84 * Added some extra checks for the -t option.
85 If no number was given, it would core dump
86 30/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
87 * Added execCommand code. (taken from windowmaker soure, as advised by Marcelo E. Magallon)
88 * Cleaned the source up a bit
89 * Decided to split op wmppp and wmifs
90 This is gonna be wmppp
91 * Used the DrawStats routine from wmifs in wmppp
92 * I decided to add a list in this source file
93 with name of ppl who helped me build this code better.
94 * I finally removed the /proc/net/route dependancy
95 All of the connections are taken from /proc/net/dev.
96 /proc/net/route is still used for checking if it is on-line.
97 27/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
98 * WMIFS: stats scrolled, while red led burning
99 * WMPPP: changed positions of line speed
100 25/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
101 * Changed the checknetdevs routine, a lot!
102 23/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
103 * Added line speed detection. via seperate exec. (this has to be suid root!)
104 Speed has to be no more than 99999
105 * Added speed and forcespeed in ~/.wmppprc and /etc/wmppprc
106 * wmifs: added on-line detection scheme, update the bitmap coordinates
107 * wmppp: the x-button now allways disconnects.
108 22/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
109 * Added /etc/wmppprc support, including "forced" mode.
110 * Added /etc/wmifsrc support, including "forced" mode.
111 21/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
112 * Moved the stats one pixel down.
113 * Added status led in wmifs.
114 * Changed RX/TX leds of wmifs to resemble wmppp
115 * Added the "dot" between eth.0 ppp.0 etc.
116 * Changed to wmifs stats to match wmppp stats (only pppX changed)
117 * Made sure that when specified -t 1, it stayed that way, even
118 when longer than 100 minutes online
119 * With -t 1, jump from 59:59 to 01:00 instead of 99:59 to 01:40
120 16/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
121 * Added "all" devices in wmifs
122 * Added "lo" support only if aked via -i
123 * Added on-line time detection (using /var/run/ppp0.pid)
124 * Added time-out for the orange led. (one minute)
125 15/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
126 * Another wmppp-master.xpm.
127 Line speed detection being the main problem here.. :(
128 * Moved START_COMMAND / STOP_COMMAND to ~/.wmppprc
129 Return 0, everything went ok.
130 Return 10, the command did not work.
131 Please note, these functions are ran in the background.
132 * Removed the ability to configure
133 * When "v" is clicked, an orange led will appear.
134 if the connect script fails (return value == 10)
135 it will become dark again. Else the on-line detection will
136 pick it up, and "green" it.
137 14/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
138 * Added "-timer"
139 * Added "-display" support
140 * Changed pixmap to a no-name pixmap.
141 + Changed LED positions
142 + Changed Timer position
143 + Changed Stats Size
144 05/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
145 * Added ~/.wmifsrc support.
146 * Put some code in DrawStats
147 * Check devices when pressing "device change"
148 03/04/1998 (Martijn Pieterse, pieterse@xs4all.nl)
149 * Added code for wmifs
150 28/03/1998 (Martijn Pieterse, pieterse@xs4all.nl)
151 * forgot what i did.. :)
152 27/03/1998 (Martijn Pieterse, pieterse@xs4all.nl)
153 * Added on-line detection
154 Scan through /proc/net/route and check everye line
155 for "ppp".
156 * A bit of code clean-up.
159 #include <stdlib.h>
160 #include <stdio.h>
161 #include <time.h>
162 #include <string.h>
163 #include <fcntl.h>
164 #include <unistd.h>
165 #include <ctype.h>
167 #include <sys/wait.h>
168 #include <sys/stat.h>
169 #include <sys/param.h>
170 #include <sys/types.h>
171 #include <sys/ioctl.h>
172 #include <sys/socket.h>
174 #include <net/ppp_defs.h>
175 #include <net/if_ppp.h>
177 #include <X11/Xlib.h>
178 #include <X11/xpm.h>
179 #include <X11/extensions/shape.h>
181 #include "../wmgeneral/wmgeneral.h"
182 #include "../wmgeneral/misc.h"
184 #include "wmppp-master.xpm"
186 /***********/
187 /* Defines */
188 /***********/
190 #define START_ACTION (NULL)
191 #define STOP_ACTION (NULL)
192 #define SPEED_ACTION (NULL)
193 #define IFDOWN_ACTION (NULL)
195 #define STAMP_FILE "/var/run/ppp0.pid"
197 /* Defines voor alle coordinate */
199 #define LED_PPP_RX (1)
200 #define LED_PPP_TX (2)
201 #define LED_PPP_POWER (3)
203 #define BUT_V (1)
204 #define BUT_X (2)
206 #define TIMER_X (9)
207 #define TIMER_Y (14)
209 #define TIMER_SRC_Y (65)
210 #define TIMER_DES_Y (6)
211 #define TIMER_SZE_X (6)
213 #define WMPPP_VERSION "1.3.0"
215 #define ORANGE_LED_TIMEOUT (60)
217 /**********************/
218 /* External Variables */
219 /**********************/
221 extern char **environ;
223 /********************/
224 /* Global Variables */
225 /********************/
227 char *ProgName;
228 char *active_interface = "ppp0";
229 int TimerDivisor=60;
230 int updaterate = 5;
232 int wmppp_mask_width = 64;
233 int wmppp_mask_height = 64;
234 char wmppp_mask_bits[64*64];
237 /*****************/
238 /* PPP variables */
239 /*****************/
241 #define PPP_UNIT 0
242 int ppp_h = -1;
244 #define PPP_STATS_HIS 54
246 int pixels_per_byte;
248 int ppp_history[PPP_STATS_HIS+1][2];
250 /***********************/
251 /* Function Prototypes */
252 /***********************/
254 void usage(void);
255 void printversion(void);
256 void DrawTime(int, int);
257 void DrawStats(int *, int, int, int, int);
258 void DrawSpeedInd(char *);
259 void DrawLoadInd(int);
261 void SetOnLED(int);
262 void SetErrLED(int);
263 void SetWaitLED(int);
264 void SetOffLED(int);
266 void ButtonUp(int);
267 void ButtonDown(int);
269 void wmppp_routine(int, char **);
271 int get_statistics(char *, long *, long *, long *, long *);
272 void get_ppp_stats(struct ppp_stats *cur);
273 int stillonline(char *);
276 /********/
277 /* Main */
278 /********/
280 int main(int argc, char *argv[]) {
282 int i;
285 /* Parse Command Line */
287 ProgName = argv[0];
288 if (strlen(ProgName) >= 5)
289 ProgName += (strlen(ProgName) - 5);
291 for (i=1; i<argc; i++) {
292 char *arg = argv[i];
294 if (*arg=='-') {
295 switch (arg[1]) {
296 case 'd' :
297 if (strcmp(arg+1, "display")) {
298 usage();
299 exit(1);
301 break;
302 case 'g' :
303 if (strcmp(arg+1, "geometry")) {
304 usage();
305 exit(1);
307 break;
308 case 'i' :
309 if (!argv[i+1]) {
310 usage();
311 exit(1);
313 if (strncmp(argv[i+1], "ppp", 3)) {
314 usage();
315 exit(1);
317 active_interface = argv[i+1];
318 i++;
319 break;
320 case 't' :
321 TimerDivisor = 1;
322 break;
323 case 'u' :
324 i++;
325 if (!argv[i]) {
326 usage();
327 exit(1);
329 updaterate = atoi(argv[i]);
330 if (updaterate < 1 || updaterate > 10) {
331 usage();
332 exit(1);
334 break;
335 case 'v' :
336 printversion();
337 exit(0);
338 break;
339 default:
340 usage();
341 exit(0);
342 break;
347 wmppp_routine(argc, argv);
349 return 0;
352 /*****************/
353 /* wmppp_routine */
354 /*****************/
356 char *start_action = NULL;
357 char *stop_action = NULL;
358 char *speed_action = NULL;
359 char *ifdown_action = NULL;
361 void wmppp_routine(int argc, char **argv) {
363 rckeys wmppp_keys[] = {
364 { "start", &start_action },
365 { "stop", &stop_action },
366 { "speed", &speed_action },
367 { "ifdown", &ifdown_action },
368 { NULL, NULL }
371 int i,j;
373 int but_stat;
375 long starttime;
376 long currenttime;
377 long lasttime;
378 long waittime;
379 long ppptime;
380 int hour,minute;
382 long ppp_send,ppp_sl=-1;
383 long ppp_recv,ppp_rl=-1;
384 long ppp_sbytes,ppp_rbytes;
385 long ppp_osbytes,ppp_orbytes;
387 struct stat st;
389 pid_t stop_child = 0;
390 pid_t start_child = 0;
391 int status;
393 XEvent Event;
395 char *p;
396 char temp[128];
398 int speed_ind=60;
400 /* Initialize some stuff */
402 get_statistics(active_interface, &ppp_rl, &ppp_sl, &ppp_orbytes, &ppp_osbytes);
404 /* Scan through ~/.wmifsrc for the mouse button actions. */
405 if (START_ACTION) start_action = strdup(START_ACTION);
406 if (STOP_ACTION) stop_action = strdup(STOP_ACTION);
407 if (SPEED_ACTION) speed_action = strdup(SPEED_ACTION);
408 if (IFDOWN_ACTION) ifdown_action = strdup(IFDOWN_ACTION);
410 strcpy(temp, "/etc/wmppprc");
411 parse_rcfile(temp, wmppp_keys);
413 p = getenv("HOME");
414 strcpy(temp, p);
415 strcat(temp, "/.wmppprc");
416 parse_rcfile(temp, wmppp_keys);
418 strcpy(temp, "/etc/wmppp.fixed");
419 parse_rcfile(temp, wmppp_keys);
421 /* Open the display */
423 createXBMfromXPM(wmppp_mask_bits, wmppp_master_xpm, wmppp_mask_width, wmppp_mask_height);
425 openXwindow(argc, argv, wmppp_master_xpm, wmppp_mask_bits, wmppp_mask_width, wmppp_mask_height);
427 /* V Button */
428 AddMouseRegion(0, 35, 48, 46, 58);
429 /* x Button */
430 AddMouseRegion(1, 47, 48, 58, 58);
432 starttime = 0;
433 currenttime = time(0);
434 ppptime = 0;
435 but_stat = -1;
436 waittime = 0;
437 copyXPMArea(28, 95, 25, 11, 5, 48);
439 /* wmppp main loop */
440 while (1) {
441 lasttime = currenttime;
442 currenttime = time(0);
443 /* Check if any child has left the playground */
444 i = waitpid(0, &status, WNOHANG);
445 if (i == stop_child && stop_child != 0) {
447 starttime = 0;
448 SetOffLED(LED_PPP_POWER);
449 SetOffLED(LED_PPP_RX);
450 SetOffLED(LED_PPP_TX);
451 copyXPMArea(28, 95, 25, 11, 5, 48);
453 RedrawWindow();
455 stop_child = 0;
457 if (i == start_child && start_child != 0) {
458 if (WIFEXITED(status)) {
459 if (WEXITSTATUS(status) == 10) {
461 starttime = 0;
462 copyXPMArea(28, 95, 25, 11, 5, 48);
463 SetOffLED(LED_PPP_POWER);
464 DrawTime(0, 1);
465 RedrawWindow();
467 start_child = 0;
471 /* On-line detectie! 1x per second */
473 if (currenttime != lasttime) {
474 i = 0;
476 if (stillonline(active_interface)) {
477 i = 1;
478 if (!starttime) {
479 starttime = currenttime;
481 if (stat(STAMP_FILE, &st) == 0)
482 starttime = st.st_mtime;
484 SetOnLED(LED_PPP_POWER);
485 waittime = 0;
487 copyXPMArea(28, 95, 25, 11, 5, 48);
489 if (speed_action)
490 DrawSpeedInd(speed_action);
492 speed_ind = currenttime + 60;
494 RedrawWindow();
497 if (!i && starttime) {
498 starttime = 0;
499 SetErrLED(LED_PPP_POWER);
501 copyXPMArea(0, 95, 26, 11, 5, 48);
503 if (ifdown_action)
504 execCommand(ifdown_action);
506 RedrawWindow();
510 if (waittime && waittime <= currenttime) {
511 SetOffLED(LED_PPP_POWER);
512 RedrawWindow();
513 waittime = 0;
516 /* If we are on-line. Print the time we are */
517 if (starttime) {
518 i = currenttime - starttime;
520 i /= TimerDivisor;
522 if (TimerDivisor == 1)
523 if (i > 59 * 60 + 59) i /= 60;
525 minute = i % 60;
526 hour = (i / 60) % 100;
527 i = hour * 100 + minute;
529 DrawTime(i, currenttime % 2);
530 /* We are online, so we can check for send/recv packets */
532 get_statistics(active_interface, &ppp_recv, &ppp_send, &ppp_rbytes, &ppp_sbytes);
534 if (ppp_send != ppp_sl) SetOnLED(LED_PPP_TX);
535 else SetOffLED(LED_PPP_TX);
537 if (ppp_recv != ppp_rl) SetOnLED(LED_PPP_RX);
538 else SetOffLED(LED_PPP_RX);
540 ppp_sl = ppp_send;
541 ppp_rl = ppp_recv;
543 /* Every five seconds we check to load on the line */
545 if ((currenttime - ppptime >= 0) || (ppptime == 0)) {
547 ppptime = currenttime + updaterate;
549 ppp_history[PPP_STATS_HIS][0] = ppp_rbytes - ppp_orbytes;
550 ppp_history[PPP_STATS_HIS][1] = ppp_sbytes - ppp_osbytes;
552 ppp_orbytes = ppp_rbytes;
553 ppp_osbytes = ppp_sbytes;
555 DrawStats(&ppp_history[0][0], 54, 25, 5, 43);
557 for (j=1; j<55; j++) {
558 ppp_history[j-1][0] = ppp_history[j][0];
559 ppp_history[j-1][1] = ppp_history[j][1];
561 if (currenttime > speed_ind) {
562 DrawLoadInd((ppp_history[54][0] + ppp_history[54][1]) / updaterate);
566 RedrawWindow();
570 while (XPending(display)) {
571 XNextEvent(display, &Event);
572 switch (Event.type) {
573 case Expose:
574 RedrawWindow();
575 break;
576 case DestroyNotify:
577 XCloseDisplay(display);
578 while (start_child | stop_child) {
579 i = waitpid(0, &status, WNOHANG);
580 if (i == stop_child) stop_child = 0;
581 if (i == start_child) start_child = 0;
582 usleep(50000l);
584 exit(0);
585 break;
586 case ButtonPress:
587 i = CheckMouseRegion(Event.xbutton.x, Event.xbutton.y);
588 switch (i) {
589 case 0:
590 ButtonDown(BUT_V);
591 break;
592 case 1:
593 ButtonDown(BUT_X);
594 break;
596 but_stat = i;
598 RedrawWindow();
599 break;
600 case ButtonRelease:
601 i = CheckMouseRegion(Event.xbutton.x, Event.xbutton.y);
602 // Button but_stat omhoogdoen!
603 switch (but_stat) {
604 case 0:
605 ButtonUp(BUT_V);
606 break;
607 case 1:
608 ButtonUp(BUT_X);
609 break;
612 if (i == but_stat && but_stat >= 0) {
613 switch (i) {
614 case 0:
615 if (!starttime) {
616 copyXPMArea(28, 95, 25, 11, 5, 48);
617 DrawTime(0, 1);
618 start_child = execCommand(start_action);
619 SetWaitLED(LED_PPP_POWER);
620 waittime = ORANGE_LED_TIMEOUT + currenttime;
623 break;
624 case 1:
625 if (stop_child == 0) {
626 stop_child = execCommand(stop_action);
628 break;
631 RedrawWindow();
633 but_stat = -1;
634 break;
635 default:
636 break;
639 usleep(50000L);
643 /*******************************************************************************\
644 |* get_statistics *|
645 \*******************************************************************************/
647 int get_statistics(char *devname, long *ip, long *op, long *is, long *os) {
649 struct ppp_stats ppp_cur;
650 static int ppp_opened = 0;
653 if (!ppp_opened) {
654 /* Open the ppp device. */
655 memset(&ppp_cur, 0, sizeof(ppp_cur));
656 if ((ppp_h = socket(AF_INET, SOCK_DGRAM, 0)) < 0)
657 return -1;
658 ppp_opened = 1;
661 get_ppp_stats(&ppp_cur);
663 *op = ppp_cur.p.ppp_opackets;
664 *ip = ppp_cur.p.ppp_ipackets;
666 *is = ppp_cur.p.ppp_ibytes;
667 *os = ppp_cur.p.ppp_obytes;
669 return 0;
672 /*******************************************************************************\
673 |* stillonline *|
674 \*******************************************************************************/
676 int stillonline(char *ifs) {
678 FILE *fp;
679 char temp[128];
680 int i;
682 i = 0;
683 fp = fopen("/proc/net/route", "r");
684 if (fp) {
685 while (fgets(temp, 128, fp)) {
686 if (strstr(temp, ifs)) {
687 i = 1; /* Line is alive */
690 fclose(fp);
692 return i;
695 /*******************************************************************************\
696 |* DrawTime *|
697 \*******************************************************************************/
699 void DrawTime(int i, int j) {
701 int k = 1000;
703 copyXPMArea(TIMER_SZE_X*((i / k)%10)+1, TIMER_SRC_Y, 5, 7, 6+6*0, TIMER_DES_Y);
704 k = k /10;
705 copyXPMArea(TIMER_SZE_X*((i / k)%10)+1, TIMER_SRC_Y, 5, 7, 6+6*1, TIMER_DES_Y);
706 k = k /10;
708 if (j)
709 copyXPMArea(62, TIMER_SRC_Y, 1, 7, 6+6*2+1, TIMER_DES_Y);
710 else
711 copyXPMArea(63, TIMER_SRC_Y, 1, 7, 6+6*2+1, TIMER_DES_Y);
713 copyXPMArea(TIMER_SZE_X*((i / k)%10)+1, TIMER_SRC_Y, 5, 7, 6+6*2 + 4, TIMER_DES_Y);
714 k = k /10;
715 copyXPMArea(TIMER_SZE_X*((i / k)%10)+1, TIMER_SRC_Y, 5, 7, 6+6*3 + 4, TIMER_DES_Y);
718 /*******************************************************************************\
719 |* DrawStats *|
720 \*******************************************************************************/
722 void DrawStats(int *his, int num, int size, int x_left, int y_bottom) {
724 int pixels_per_byte;
725 int j,k;
726 int *p;
728 pixels_per_byte = 1*size;
729 p = his;
730 for (j=0; j<num; j++) {
731 if (p[0] + p[1] > pixels_per_byte)
732 pixels_per_byte = p[0] + p[1];
733 p += 2;
736 pixels_per_byte /= size;
737 p = his;
739 for (k=0; k<num; k++) {
742 for (j=0; j<size; j++) {
744 if (j < p[0] / pixels_per_byte)
745 copyXPMArea(57+2, 85, 1, 1, k+x_left, y_bottom-j);
746 else if (j < (p[0] + p[1]) / pixels_per_byte)
747 copyXPMArea(57+1, 85, 1, 1, k+x_left, y_bottom-j);
748 else
749 copyXPMArea(57+0, 85, 1, 1, k+x_left, y_bottom-j);
751 p += 2;
755 /*******************************************************************************\
756 |* DrawSpeedInd *|
757 \*******************************************************************************/
759 void PrintLittle(int i, int *k) {
761 switch (i) {
762 case -1:
763 *k -= 5;
764 copyXPMArea(13*5-5, 86, 4, 9, *k, 48);
765 break;
766 case 0:
767 *k -= 5;
768 copyXPMArea(45, 86, 5, 9, *k, 48);
769 break;
770 default:
771 *k -= 5;
772 copyXPMArea(i*5-5, 86, 5, 9, *k, 48);
773 break;
777 void DrawSpeedInd(char *speed_action) {
779 int linespeed, i, k;
780 FILE *fp;
781 char *p;
782 char temp[128];
784 fp = popen(speed_action, "r");
786 if (fp) {
787 linespeed = 0;
789 while (fgets(temp, 128, fp))
792 pclose(fp);
794 if ((p=strstr(temp, "CONNECT"))) {
795 linespeed = atoi(p + 8);
798 k = 30;
800 i = (linespeed % 1000) / 100;
801 linespeed /= 1000;
802 PrintLittle(i, &k);
804 k -= 5;
805 copyXPMArea(50, 86, 5, 9, k, 48);
807 do {
808 PrintLittle(linespeed % 10, &k);
809 linespeed /= 10;
810 } while (linespeed);
814 /*******************************************************************************\
815 |* DrawLoadInd *|
816 \*******************************************************************************/
818 void DrawLoadInd(int speed) {
820 int i, k;
822 k = 30;
823 for (i=0; i<5; i++) PrintLittle(-1, &k);
825 k = 30;
827 do {
828 PrintLittle(speed % 10, &k);
829 speed /= 10;
830 } while (speed);
833 /*******************************************************************************\
834 |* usage *|
835 \*******************************************************************************/
837 void usage(void) {
839 fprintf(stderr, "\nwmppp - programming: tijno, design & ideas: warp\n\n");
840 fprintf(stderr, "usage:\n");
841 fprintf(stderr, "-display <display name>\n");
842 fprintf(stderr, "-geometry +XPOS+YPOS initial window position\n");
843 fprintf(stderr, "-h this help screen\n");
844 fprintf(stderr, "-i <device> (ppp0, ppp1, etc) EXPERIMENTAL! Please send bugreports!\n");
845 fprintf(stderr, "-t set the on-line timer to MM:SS instead of HH:MM\n");
846 fprintf(stderr, "-u <update rate> (1..10), default 5 seconds\n");
847 fprintf(stderr, "-v print the version number\n");
848 fprintf(stderr, "\n");
851 /*******************************************************************************\
852 |* printversion *|
853 \*******************************************************************************/
855 void printversion(void) {
857 fprintf(stderr, "%s\n", WMPPP_VERSION);
860 /*******************************************************************************\
861 |* get_ppp_stats *|
862 \*******************************************************************************/
864 void get_ppp_stats(struct ppp_stats *cur) {
866 struct ifpppstatsreq req;
868 memset(&req, 0, sizeof(req));
870 req.stats_ptr = (caddr_t) &req.stats;
872 strcpy(req.ifr__name, active_interface);
874 if (ioctl(ppp_h, SIOCGPPPSTATS, &req) >= 0)
875 *cur = req.stats;
878 #define LED_ON_X (50)
879 #define LED_ON_Y (80)
880 #define LED_OFF_Y (75)
881 #define LED_OFF_X (50)
883 #define LED_ERR_X (56)
884 #define LED_ERR_Y (75)
885 #define LED_WTE_X (56)
886 #define LED_WTE_Y (80)
887 #define LED_SZE_X (4)
888 #define LED_SZE_Y (4)
890 #define LED_PWR_X (53)
891 #define LED_PWR_Y (7)
892 #define LED_SND_X (47)
893 #define LED_SND_Y (7)
894 #define LED_RCV_X (41)
895 #define LED_RCV_Y (7)
897 #define LED_SW_X (38)
898 #define LED_SW_Y (14)
900 /*******************************************************************************\
901 |* SetOnLED *|
902 \*******************************************************************************/
903 void SetOnLED(int led) {
905 switch (led) {
906 case LED_PPP_POWER:
907 copyXPMArea(LED_ON_X, LED_ON_Y, LED_SZE_X, LED_SZE_Y, LED_PWR_X, LED_PWR_Y);
908 break;
909 case LED_PPP_RX:
910 copyXPMArea(LED_ON_X, LED_ON_Y, LED_SZE_X, LED_SZE_Y, LED_RCV_X, LED_RCV_Y);
911 break;
912 case LED_PPP_TX:
913 copyXPMArea(LED_ON_X, LED_ON_Y, LED_SZE_X, LED_SZE_Y, LED_SND_X, LED_SND_Y);
914 break;
918 /*******************************************************************************\
919 |* SetOffLED *|
920 \*******************************************************************************/
921 void SetOffLED(int led) {
923 switch (led) {
924 case LED_PPP_POWER:
925 copyXPMArea(LED_OFF_X, LED_OFF_Y, LED_SZE_X, LED_SZE_Y, LED_PWR_X, LED_PWR_Y);
926 break;
927 case LED_PPP_RX:
928 copyXPMArea(LED_OFF_X, LED_OFF_Y, LED_SZE_X, LED_SZE_Y, LED_RCV_X, LED_RCV_Y);
929 break;
930 case LED_PPP_TX:
931 copyXPMArea(LED_OFF_X, LED_OFF_Y, LED_SZE_X, LED_SZE_Y, LED_SND_X, LED_SND_Y);
932 break;
937 /*******************************************************************************\
938 |* SetErrLED *|
939 \*******************************************************************************/
940 void SetErrLED(int led) {
942 switch (led) {
943 case LED_PPP_POWER:
944 copyXPMArea(LED_ERR_X, LED_ERR_Y, LED_SZE_X, LED_SZE_Y, LED_PWR_X, LED_PWR_Y);
945 break;
949 /*******************************************************************************\
950 |* SetWaitLED *|
951 \*******************************************************************************/
952 void SetWaitLED(int led) {
954 switch (led) {
955 case LED_PPP_POWER:
956 copyXPMArea(LED_WTE_X, LED_WTE_Y, LED_SZE_X, LED_SZE_Y, LED_PWR_X, LED_PWR_Y);
957 break;
961 /*******************************************************************************\
962 |* ButtonUp *|
963 \*******************************************************************************/
964 void ButtonUp(int button) {
966 switch (button) {
967 case BUT_V :
968 copyXPMArea(24, 74, 12, 11, 35, 48);
969 break;
970 case BUT_X :
971 copyXPMArea(36, 74, 12, 11, 47, 48);
972 break;
976 /*******************************************************************************\
977 |* ButtonDown *|
978 \*******************************************************************************/
979 void ButtonDown(int button) {
981 switch (button) {
982 case BUT_V :
983 copyXPMArea(0, 74, 12, 11, 35, 48);
984 break;
985 case BUT_X :
986 copyXPMArea(12, 74, 12, 11, 47, 48);
987 break;