#ifndef SUPPORT_H
#define SUPPORT_H

extern int do_shutdown;
extern int server_reboot;

void sig_term_handler(int signo);
struct timeval timediff(struct timeval *a, struct timeval *b);
int init_socket(int port);
int new_connection(int s);
void nonblock(int s);
void close_sockets(int mother);

#endif
