File: httpd.c

package info (click to toggle)
et 80b2-8
  • links: PTS
  • area: main
  • in suites: potato, slink
  • size: 1,068 kB
  • ctags: 1,074
  • sloc: ansic: 10,313; tcl: 2,633; makefile: 179; sh: 19
file content (16 lines) | stat: -rw-r--r-- 281 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
** This file implements a simple web server
*/
void Et_Main(int argc, char **argv){
  ET_INSTALL_COMMANDS;
  ET_INCLUDE( httpd.tcl );
}

#if UNIX
int main(int argc, char **argv){
  Et_Init(&argc,argv);
  Et_Main(argc,argv);
  Et_MainLoop();
  return 0;
}
#endif