source: vendor/current/source4/libcli/raw/rawdate.c

Last change on this file was 414, checked in by Herwig Bauernfeind, 15 years ago

Samba 3.5.0: Initial import

File size: 3.2 KB
Line 
1/*
2 Unix SMB/CIFS implementation.
3
4 raw date handling functions
5
6 Copyright (C) Andrew Tridgell 2004
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
20*/
21
22#include "includes.h"
23#include "libcli/raw/libcliraw.h"
24#include "libcli/raw/raw_proto.h"
25
26/*******************************************************************
27put a dos date into a buffer (time/date format)
28This takes GMT time and puts local time for zone_offset in the buffer
29********************************************************************/
30void raw_push_dos_date(struct smbcli_transport *transport,
31 uint8_t *buf, int offset, time_t unixdate)
32{
33 push_dos_date(buf, offset, unixdate, transport->negotiate.server_zone);
34}
35
36/*******************************************************************
37put a dos date into a buffer (date/time format)
38This takes GMT time and puts local time in the buffer
39********************************************************************/
40void raw_push_dos_date2(struct smbcli_transport *transport,
41 uint8_t *buf, int offset, time_t unixdate)
42{
43 push_dos_date2(buf, offset, unixdate, transport->negotiate.server_zone);
44}
45
46/*******************************************************************
47put a dos 32 bit "unix like" date into a buffer. This routine takes
48GMT and converts it to LOCAL time in zone_offset before putting it
49********************************************************************/
50void raw_push_dos_date3(struct smbcli_transport *transport,
51 uint8_t *buf, int offset, time_t unixdate)
52{
53 push_dos_date3(buf, offset, unixdate, transport->negotiate.server_zone);
54}
55
56/*******************************************************************
57convert a dos date
58********************************************************************/
59time_t raw_pull_dos_date(struct smbcli_transport *transport,
60 const uint8_t *date_ptr)
61{
62 return pull_dos_date(date_ptr, transport->negotiate.server_zone);
63}
64
65/*******************************************************************
66like raw_pull_dos_date() but the words are reversed
67********************************************************************/
68time_t raw_pull_dos_date2(struct smbcli_transport *transport,
69 const uint8_t *date_ptr)
70{
71 return pull_dos_date2(date_ptr, transport->negotiate.server_zone);
72}
73
74/*******************************************************************
75 create a unix GMT date from a dos date in 32 bit "unix like" format
76 these arrive in server zone, with corresponding DST
77 ******************************************************************/
78time_t raw_pull_dos_date3(struct smbcli_transport *transport,
79 const uint8_t *date_ptr)
80{
81 return pull_dos_date3(date_ptr, transport->negotiate.server_zone);
82}
Note: See TracBrowser for help on using the repository browser.