ef714b4aa0d7a26e146cf0e3386fdadc450db934
Stefan Schuermans initial commit of files fro...

Stefan Schuermans authored 8 years ago

1) /* bluebox distributor
2)  * version 0.3.2 date 2007-07-18
3)  * Copyright (C) 2006-2007 Stefan Schuermans <stefan@blinkenarea.org>
4)  * Copyleft: GNU public license V2.0 - http://www.gnu.org/copyleft/gpl.html
5)  * a BlinkenArea project - http://www.blinkenarea.org/
6)  */
7) 
8) #include <stdio.h>
9) #include <stdlib.h>
10) #include <string.h>
11) #include <unistd.h>
12) #include <fcntl.h>
13) #include <signal.h>
14) #include <errno.h>
15) #include <time.h>
16) #include <sys/types.h>
17) #include <sys/stat.h>
18) #include <sys/socket.h>
19) #include <sys/time.h>
20) #include <sys/ioctl.h>
21) #include <netinet/in.h>
22) 
23) #include "protocols.h"
24) #include "bd_config.h"
25) #include "bd_fmt.h"
26) 
27) //global variables
28) int end = 0; //set to 1 by signal handler to indicate end of program
29) 
30) //signal handler to end program
31) static void end_signal( int sig_no )
32) {
33)   //end program
34)   end = 1;
35)   //keep compiler happy
Stefan Schuermans make everything compile wit...

Stefan Schuermans authored 8 years ago

36)   (void)sig_no;