Subversion Repositories Tewi

Rev

Rev 118 | Rev 156 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
43 nishi 1
/* $Id: config.h.tmpl 128 2024-09-23 10:19:19Z nishi $ */
2
 
3
#ifndef __CONFIG_H__
4
#define __CONFIG_H__
5
 
128 nishi 6
#define SERVER_ADMIN "webmaster@domain"
7
 
50 nishi 8
#undef NO_SSL
118 nishi 9
#define USE_POLL
43 nishi 10
 
11
/* DO NOT EDIT BELOW THIS LINE */
12
 
13
#ifdef NO_SSL
14
#define SSL void
15
#endif
16
 
118 nishi 17
#if defined(__MINGW32__) && defined(USE_POLL)
18
#undef USE_POLL
19
/* Force select(2) for Windows */
43 nishi 20
#endif
79 nishi 21
 
118 nishi 22
#endif
23
 
79 nishi 24
/*
25
vim: syntax=c
26
*/