aboutsummaryrefslogtreecommitdiff
path: root/src/Startup.c
blob: c07145b694b97b5514ec234061acfbefa0b94036 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
 /*@@
   @file      Startup.c
   @date      Wed Sep 13 21:26:56 2000
   @author    Tom Goodale
   @desc 
   
   @enddesc 
   @version $Header$
 @@*/

#include <stdio.h>
#include <stdlib.h>

#include "cctk.h"

#include "cctk_Arguments.h"
#include "cctk_Parameters.h"

static char *rcsid = "$Header$";

CCTK_FILEVERSION(DevThorn_http_utils_Startup_c)

 /*@@
   @routine    HTTP_Startup
   @date       Wed Sep 13 21:26:56 2000
   @author     Tom Goodale
   @desc 
   Startup routine for the webserver.
   @enddesc 
   @calls     
   @calledby   
   @history 
 
   @endhistory 

@@*/
int HTTPUTILS_Startup(void)
{
  DECLARE_CCTK_PARAMETERS

  HTTPUTILS_RegisterPages();

  HTTP_util_RegisterIOPages();

  return 0;
}