1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
/*******************************************************************************
*
* Copyright (c) 2004 Guillaume Cottenceau
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2, as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
******************************************************************************/
#include <sys/types.h>
#include <sys/socket.h>
#include <stdlib.h>
#include <unistd.h>
#include <glib.h>
#ifndef MSG_NOSIGNAL
#define MSG_NOSIGNAL 0
#endif
extern const int proto_major;
extern const int proto_minor;
extern char* current_command;
extern char* pidfile;
extern char* user_to_switch;
extern GList* alert_words;
extern int interval_reregister;
extern int amount_talk_flood[256];
ssize_t send_line_log(int fd, char* dest_msg, char* inco_msg);
ssize_t send_line_log_push(int fd, char* dest_msg);
ssize_t send_line_log_push_binary(int fd, char* dest_msg, char* printable_msg);
ssize_t send_ok(int fd, char* inco_msg);
void connections_manager();
void conn_terminated(int fd, char* reason);
void create_server(int argc, char **argv);
void register_server(int silent);
void unregister_server();
void close_server();
void reread();
int conns_nb(void);
void add_prio(int fd);
#ifdef DEBUG
void net_debug(void);
#endif
|