ReactOS 0.4.15-dev-7961-gdcf9eb0
daytime.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS simple TCP/IP services
3 * LICENSE: GPL - See COPYING in the top level directory
4 * FILE: base/services/tcpsvcs/daytime.c
5 * PURPOSE: Sends the current date and time to the client
6 * COPYRIGHT: Copyright 2005 - 2008 Ged Murphy <gedmurphy@reactos.org>
7 *
8 */
9
10#include "tcpsvcs.h"
11
12#include <time.h>
13
14static BOOL
16{
17 SIZE_T stringSize = strlen(time) + 1;
18 if (send(sock, time, stringSize, 0) == SOCKET_ERROR)
19 {
20 LogEvent(L"DayTime: Error sending data", WSAGetLastError(), 0, LOG_ERROR);
21 return FALSE;
22 }
23
24 return TRUE;
25}
26
27
30{
31 struct tm *localTime;
32 time_t aclock;
33 CHAR *pszTime;
34 DWORD retVal = 0;
35 SOCKET Sock = (SOCKET)Sock_;
36
37 time(&aclock);
38 localTime = localtime(&aclock);
39 if (localTime)
40 {
41 pszTime = asctime(localTime);
42 if (!SendTime(Sock, pszTime))
43 retVal = 1;
44 }
45
46 LogEvent(L"DayTime: Shutting connection down", 0, 0, LOG_FILE);
47 if (ShutdownConnection(Sock, FALSE))
48 LogEvent(L"DayTime: Connection is down", 0, 0, LOG_FILE);
49 else
50 {
51 LogEvent(L"DayTime: Connection shutdown failed", 0, 0, LOG_FILE);
52 retVal = 1;
53 }
54
55 LogEvent(L"DayTime: Terminating thread", 0, 0, LOG_FILE);
56 ExitThread(retVal);
57}
ACPI_SIZE strlen(const char *String)
Definition: utclib.c:269
VOID LogEvent(LPCWSTR lpMsg, DWORD errNum, DWORD exitCode, UINT flags)
Definition: log.c:196
static BOOL SendTime(SOCKET sock, CHAR *time)
Definition: daytime.c:15
DWORD WINAPI DaytimeHandler(VOID *Sock_)
Definition: daytime.c:29
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
VOID WINAPI ExitThread(IN DWORD uExitCode)
Definition: thread.c:365
INT WSAAPI send(IN SOCKET s, IN CONST CHAR FAR *buf, IN INT len, IN INT flags)
Definition: send.c:23
__kernel_time_t time_t
Definition: linux.h:252
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
__u16 time
Definition: mkdosfs.c:8
#define L(x)
Definition: ntvdm.h:50
_Check_return_ _CRTIMP char *__cdecl asctime(_In_ const struct tm *_Tm)
_CRTIMP struct tm *__cdecl localtime(const time_t *_Time)
Definition: time.h:416
BOOL ShutdownConnection(SOCKET sock, BOOL bRec)
Definition: skelserver.c:126
Definition: tcpcore.h:1455
Definition: time.h:68
#define LOG_ERROR
Definition: tcpsvcs.h:16
ULONG_PTR SIZE_T
Definition: typedefs.h:80
#define WINAPI
Definition: msvc.h:6
int PASCAL FAR WSAGetLastError(void)
Definition: dllmain.c:112
UINT_PTR SOCKET
Definition: winsock.h:47
#define SOCKET_ERROR
Definition: winsock.h:333
char CHAR
Definition: xmlstorage.h:175