111 lines
2 KiB
C
111 lines
2 KiB
C
/************************************************************************
|
|
* IRC - Internet Relay Chat, iauth/iauth.c
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 1, or (at your option)
|
|
* any later version.
|
|
*
|
|
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*
|
|
* $Id: iauth.c,v 1.2 2002/08/13 14:45:09 fishwaldo Exp $
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include <sys/time.h>
|
|
#include <signal.h>
|
|
|
|
#include "conf.h"
|
|
#include "iauth.h"
|
|
#include "log.h"
|
|
#include "res.h"
|
|
#include "setup.h"
|
|
#include "sock.h"
|
|
|
|
static void SetupSignals();
|
|
|
|
time_t CurrentTime; /* current system timestamp */
|
|
|
|
/*
|
|
SetupSignals()
|
|
Set up signal handlers
|
|
*/
|
|
|
|
static void
|
|
SetupSignals()
|
|
|
|
{
|
|
signal(SIGPIPE, SIG_IGN);
|
|
} /* SetupSignals() */
|
|
|
|
int
|
|
main()
|
|
|
|
{
|
|
#ifndef DEBUGMODE
|
|
int pid;
|
|
#endif
|
|
|
|
LoadConfig(ICONF);
|
|
|
|
InitLog(LOGFILE);
|
|
|
|
#ifndef DEBUGMODE
|
|
|
|
pid = fork();
|
|
switch (pid)
|
|
{
|
|
case -1:
|
|
{
|
|
fprintf(stderr, "Unable to fork, exiting\n");
|
|
exit (-1);
|
|
}
|
|
|
|
/*
|
|
* Child: do nothing
|
|
*/
|
|
case 0:
|
|
{
|
|
break;
|
|
}
|
|
|
|
/*
|
|
* Parent: exit
|
|
*/
|
|
default:
|
|
{
|
|
exit (0);
|
|
}
|
|
} /* switch (pid) */
|
|
|
|
#endif /* !DEBUGMODE */
|
|
|
|
log(L_INFO, "IAuth Loaded");
|
|
|
|
/* Initialize signals */
|
|
SetupSignals();
|
|
|
|
/* Initialize listening ports */
|
|
InitListenPorts();
|
|
|
|
#if 0
|
|
init_resolver();
|
|
#endif
|
|
|
|
/*
|
|
* Enter this loop constantly waiting for incoming data
|
|
* or connections
|
|
*/
|
|
while (1)
|
|
{
|
|
CheckConnections();
|
|
}
|
|
} /* main() */
|