24 lines
500 B
C
24 lines
500 B
C
/**
|
|
* Necronda Web Server
|
|
* Definitions
|
|
* src/necronda.h
|
|
* Lorenz Stechauner, 2021-05-04
|
|
*/
|
|
|
|
#ifndef NECRONDA_SERVER_NECRONDA_H
|
|
#define NECRONDA_SERVER_NECRONDA_H
|
|
|
|
#define NECRONDA_VERSION "4.4"
|
|
#define SERVER_STR "Necronda/" NECRONDA_VERSION
|
|
#define SERVER_STR_HTML "Necronda web server " NECRONDA_VERSION
|
|
|
|
#ifndef DEFAULT_HOST
|
|
# define DEFAULT_HOST "www.necronda.net"
|
|
#endif
|
|
|
|
#ifndef SERVER_NAME
|
|
# define SERVER_NAME DEFAULT_HOST
|
|
#endif
|
|
|
|
#endif //NECRONDA_SERVER_NECRONDA_H
|