Add the DragonFly cvs id and perform general cleanups on cvs/rcs/sccs ids. Most
[dragonfly.git] / usr.sbin / tcpdump / tcpslice / gwtm2secs.c
1 /*
2  * Copyright (c) 1990 The Regents of the University of California.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that: (1) source code distributions
7  * retain the above copyright notice and this paragraph in its entirety, (2)
8  * distributions including binary code include the above copyright notice and
9  * this paragraph in its entirety in the documentation or other materials
10  * provided with the distribution, and (3) all advertising materials mentioning
11  * features or use of this software display the following acknowledgement:
12  * ``This product includes software developed by the University of California,
13  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14  * the University nor the names of its contributors may be used to endorse
15  * or promote products derived from this software without specific prior
16  * written permission.
17  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20  *
21  * $FreeBSD: src/usr.sbin/tcpdump/tcpslice/gwtm2secs.c,v 1.4 1999/08/28 05:11:32 peter Exp $
22  * $DragonFly: src/usr.sbin/tcpdump/tcpslice/gwtm2secs.c,v 1.2 2003/06/17 04:30:03 dillon Exp $
23  */
24
25 /*
26  * gwtm2secs.c - convert "tm" structs for Greenwich time to Unix timestamp
27  */
28
29 #include "tcpslice.h"
30
31 static int days_in_month[] =
32         /* Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec */
33         {  31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 };
34
35 #define IS_LEAP_YEAR(year)      \
36         (year % 4 == 0 && (year % 100 != 0 || year % 400 == 0))
37
38 time_t gwtm2secs( struct tm *tm )
39         {
40         int i, days, year;
41
42         year = tm->tm_year;
43
44         /* Allow for year being specified with either 2 digits or 4 digits.
45          * 2-digit years are either 19xx or 20xx - a simple heuristic
46          * distinguishes them, since we can't represent any time < 1970.
47          */
48         if ( year < 100 )
49                 if ( year >= 70 )
50                         year += 1900;
51                 else
52                         year += 2000;
53
54         days = 0;
55         for ( i = 1970; i < year; ++i )
56                 {
57                 days += 365;
58                 if ( IS_LEAP_YEAR(i) )
59                         ++days;
60                 }
61
62         for ( i = 0; i < tm->tm_mon; ++i )
63                 days += days_in_month[i];
64
65         if ( IS_LEAP_YEAR(year) && tm->tm_mon > 1 ) /* 1 is February */
66                 ++days;
67
68         days += tm->tm_mday - 1; /* -1 since days are numbered starting at 1 */
69
70         return days * 86400 + tm->tm_hour * 3600 + tm->tm_min * 60 + tm->tm_sec;
71         }