Subversion Repositories Tewi

Rev

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

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