Subversion Repositories Tewi

Rev

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

Rev 219 Rev 240
Line 1... Line 1...
1
/* $Id: http.c 219 2024-10-02 20:40:37Z nishi $ */
1
/* $Id: http.c 240 2024-10-03 05:54:55Z nishi $ */
2
 
2
 
3
#define SOURCE
3
#define SOURCE
4
 
4
 
5
#include "../config.h"
5
#include "../config.h"
6
 
6
 
Line 14... Line 14...
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
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
18
#if defined(__MINGW32__) || defined(_MSC_VER) || defined(__BORLANDC__) || defined(__WATCOMC__)
-
 
19
#ifdef USE_WINSOCK1
-
 
20
#include <winsock.h>
-
 
21
#else
19
#include <winsock2.h>
22
#include <winsock2.h>
-
 
23
#endif
20
#else
24
#else
21
#ifdef USE_POLL
25
#ifdef USE_POLL
22
#ifdef __PPU__
26
#ifdef __PPU__
23
#include <net/poll.h>
27
#include <net/poll.h>
24
#else
28
#else