- The big forward port. I probably broke lots of stuff, so please look over any
[ircu2.10.12-pk.git] / ircd / opercmds.c
1 /*
2  * IRC - Internet Relay Chat, ircd/opercmds.c (formerly ircd/s_serv.c)
3  * Copyright (C) 1990 Jarkko Oikarinen and
4  *                    University of Oulu, Computing Center
5  *
6  * See file AUTHORS in IRC package for additional names of
7  * the programmers.
8  *
9  * This program is free software; you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation; either version 1, or (at your option)
12  * any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22  *
23  * $Id$
24  */
25 #include "config.h"
26
27 #include "opercmds.h"
28 #include "class.h"
29 #include "client.h"
30 #include "ircd.h"
31 #include "ircd_chattr.h"
32 #include "ircd_reply.h"
33 #include "ircd_string.h"
34 #include "listener.h"
35 #include "match.h"
36 #include "msg.h"
37 #include "numeric.h"
38 #include "numnicks.h"
39 #include "s_conf.h"
40 #include "send.h"
41 #include "struct.h"
42
43 #include <stdio.h>
44 #include <stdlib.h>
45 #include <string.h>
46 #include <sys/time.h>
47
48 char *militime(char* sec, char* usec)
49 {
50   struct timeval tv;
51   static char timebuf[18];
52
53   gettimeofday(&tv, NULL);
54   if (sec && usec)
55     sprintf(timebuf, "%ld",
56         (tv.tv_sec - atoi(sec)) * 1000 + (tv.tv_usec - atoi(usec)) / 1000);
57   else
58     sprintf(timebuf, "%ld %ld", tv.tv_sec, tv.tv_usec);
59   return timebuf;
60 }
61
62 char *militime_float(char* start)
63 {
64   struct timeval tv;
65   static char timebuf[18];
66   char *p;
67
68   gettimeofday(&tv, NULL);
69   if (start)
70   {
71     if ((p = strchr(start, '.')))
72     {
73       p++;
74       sprintf(timebuf, "%ld",
75           (tv.tv_sec - atoi(start)) * 1000 + (tv.tv_usec - atoi(p)) / 1000);
76     }
77     else 
78       strcpy(timebuf, "0");
79   }
80   else
81     sprintf(timebuf, "%ld.%ld", tv.tv_sec, tv.tv_usec);
82   return timebuf;
83 }