Subversion Repositories Tewi

Rev

Rev 294 | Rev 315 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 294 Rev 312
Line 1... Line 1...
1
/* $Id: http.c 294 2024-10-09 10:51:28Z nishi $ */
1
/* $Id: http.c 312 2024-10-13 18:17:37Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "../config.h"
5
#include "../config.h"
6
 
6
 
Line 13... Line 13...
13
 
13
 
14
#include <stdbool.h>
14
#include <stdbool.h>
15
#include <stdlib.h>
15
#include <stdlib.h>
16
#include <string.h>
16
#include <string.h>
17
 
17
 
-
 
18
#ifdef __OS2__
-
 
19
#include <sys/time.h>
-
 
20
#include <types.h>
-
 
21
#include <tcpustd.h>
-
 
22
#endif
-
 
23
 
18
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
24
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || (defined(__WATCOMC__) && !defined(__OS2__))
19
#ifdef USE_WINSOCK1
25
#ifdef USE_WINSOCK1
20
#include <winsock.h>
26
#include <winsock.h>
21
#else
27
#else
22
#include <winsock2.h>
28
#include <winsock2.h>
23
#endif
29
#endif